index.jsp
<body>
<%
int i=0;
synchronized(application){
if(application.getAttribute("times")==null){
i=1;
}
else{
i=Integer.parseInt((String)application.getAttribute("times"));
}
application.setAttribute("times", Integer.toString(i));
}
%>
<table>
<tr bgcolor="lightgrey">
<td align="center">欢迎访问!</td>
</tr>
<tr>
<td align="center">
您是第<b><%=i %></b>位访问本网站的游客!
</td></tr>
</table>
</body>
网友评论