欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp计数器-jsp文件

程序员文章站 2024-02-26 12:06:22
jsp bean example
<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>