?? sample2.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 + -