当前位置: 移动技术网 > IT编程>开发语言>Java > jsp计数器-jsp文件

jsp计数器-jsp文件

2017年12月12日  | 移动技术网IT编程  | 我要评论
<html>
<head>
<title>jsp bean example</title>
</head>

<body>

<!-- set the scripting language to java -->
<%@ page language="java" %>

<!-- instantiate the counter bean with an id of "counter" -->
<jsp:usebean id="counter" scope="session" class="counter" />

<!-- set the bean's count property to the value of -->
<!-- the request parameter "count", using the -->
<!-- jsp:setproperty action. -->
<jsp:setproperty name="counter" property="count" param="count" />

<%

// write the current value of the property count
out.println("count from scriptlet code : "
+ counter.getcount() + "<br>");

%>

<!-- get the bean's count property, -->
<!-- using the jsp:getproperty action. -->
count from jsp:getproperty :
<jsp:getproperty name="counter" property="count" /><br>

</body>
</html>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网