黑马网友
发表于 2011-9-24 03:13:53
地板
求加分,, 缺分啊 ..
我曾经写过一个JSP的访问页面次数..
不过这个代码只针对页面访问, 没有数据库对其进行记录, 当服务器重启的时候, 次数也会初始为0.
废话少说,代码如下(经过测试的, 页面访问记录次数没什么问题):
<%
int c=0;
Integer count=(Integer)application.getAttribute("count");
if(count!=null)
{
c=count.intValue();
}
c++;
application.setAttribute("count",Integer.valueOf(c));
%>
您是第 <%=c%> 位来访者 |
|