فهرست منبع

删除 'Mysql/WebRoot/visit.jsp'

1801010627 6 سال پیش
والد
کامیت
6a936670e1
1فایلهای تغییر یافته به همراه0 افزوده شده و 32 حذف شده
  1. 0 32
      Mysql/WebRoot/visit.jsp

+ 0 - 32
Mysql/WebRoot/visit.jsp

@@ -1,32 +0,0 @@
-<%@ 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>