9-6.txt

来自「jsp常用实例讲解」· 文本 代码 · 共 21 行

TXT
21
字号
<html>

<%@page contentType="text/html;charset=gb2312"%>
<jsp:useBean id="atest" class="acceptPara"/>

<head><title>testBeanEx.jsp</title></head>

<body>
<jsp:setProperty name="atest" property="*"/>
Value of property "name" : 
<jsp:getProperty name="atest" property="name"/><br>
Value of property "age" : 
<jsp:getProperty name="atest" property="age"/><br>
Value of property "sex" : 
<jsp:getProperty name="atest" property="sex"/><br>
Value of property "submit" :
<jsp:getProperty name="atest" property="submit"/><br>

</body>
</html>

⌨️ 快捷键说明

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