统计网站访问次数的实现

tongji.jsp
统计页代码片段

<%
     Object obj=application.getAttribute("count");
    if(obj==null){
     //进行设置,第一个成功访问
    application.setAttribute("count",1);
}else{
    int count=Integer.parseInt(obj,toString());
    count++;
    application.setAttribute("count",count);
}
  
%>

xianshi.jsp
显示页代码片段


您好,您是第<%=application.getAttribute("count")%>访问本站的用户

 
  

 
  


你可能感兴趣的:(统计网站访问次数的实现)