<!--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 is 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>
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.