主要实现单个页面的访问次数记录与总访问次数记录
///////////////////////index.jsp/////////////////////////////////
主页面
一 <%
Integer count = (Integer)application.getAttribute("count");
if(count==null){
count=0;
}
%>
二 <%
Integer count1 = (Integer)application.getAttribute("count1");
if(count1==null){
count1=0;
}
%>
总访问量:
<%=count+count1 %>
///////////////////////////////////1.jsp//////////////////////////////////
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
Integer count = (Integer)application.getAttribute("count");
if(count==null){
count=1;
application.setAttribute("count",count);
}else{
count++;
application.setAttribute("count",count);
}
%>
访问人数为:
<%=count %>
返回首页///////////////////////////////////2.jsp///////////////////////////////////////
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
Integer count1 = (Integer)application.getAttribute("count1");
if(count1==null){
count1=1;
application.setAttribute("count1",count1);
}else{
count1++;
application.setAttribute("count1",count1);
}
%>
访问人数为:
<%=count1 %>
返回首页