%@ page contentType="text/html;charset=GB2312" %>
长沙民政体育艺术部
| |
|
|
| |
 |
|
 |
 |
|
|
|
|
|
|
|
| |
|
|
|
|
|
网站计数器
<%!
synchronized void countPeople()//串行化计数函数
{ ServletContext application=getServletContext();
Integer number=(Integer)application.getAttribute("Count");
if(number==null) //如果是第1个访问本站
{ number=new Integer(1);
application.setAttribute("Count",number);
}
else
{ number=new Integer(number.intValue()+1);
application.setAttribute("Count",number);
}
}
%>
<% if(session.isNew())//如果是一个新的会话
countPeople();
Integer yourNumber=(Integer)application.getAttribute("Count");
%>
欢迎访问本站,您是第
<%=yourNumber%>
个访问用户。
<%@ page contentType="text/html;charset=gb2312"%>