1234567891011121314151617181920212223242526272829303132 |
- <%@ page contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8" %>
- <% response.setContentType("text/html");
- response.setHeader("Pragma","No-cache");
- response.setHeader("Cache-Control","no-cache");
- response.setDateHeader("Expiress",0); %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
-
- <title>java计数器</title>
-
- </head>
-
- <body>
- <%
- if(application.getAttribute("count")==null){
- application.setAttribute("count", new Integer(0));
- }
- Integer count=(Integer)application.getAttribute("count");
- application.setAttribute("count", new Integer(count.intValue()+1));
- count=(Integer)application.getAttribute("count");
- %><div id="aaa"> 这是第
- <%=count.intValue()%>个访问量
- </div>
- </body>
- </html>
|