session application

来源:互联网 发布:拳师七号淘宝店 编辑:程序博客网 时间:2024/06/05 22:56
    <%Integer counter=(Integer) application.getAttribute("counter");
if(counter==null){//如果页面第一次被访问则为空
counter=1;
}
else
{counter++;}
//将变量放入Application域,在Serlect中他是ServletContext
application.setAttribute("counter",counter);
String realpath=application.getRealPath("/");
    
%>


  <body>
 当前页面被访问的次数:<%=counter %>
<%=realpath %>
0 0
原创粉丝点击