⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sample2.jsp

📁 从零开始——JSP动态网页制作基础培训教程-源代码
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=gb2312"%> 
<jsp:useBean id="splBean" class="ch6.SampleBean2"/>
<html>
	<head>
		<title>在JavaBean中存放数据</title>
	</head>	
	<body>
		<jsp:setProperty name="splBean" property="id"  value="${param.id}" />
		<jsp:setProperty name="splBean" property="age" value="${param.age}"/>
		<center>
			编号:<jsp:getProperty name="splBean" property="id" /><br>
			年龄:<jsp:getProperty name="splBean" property="age" /><br>
		</center>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -