码迷,mamicode.com
首页 > 其他好文 > 详细

Cookie(页面访问次数)

时间:2017-12-27 14:27:07      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:www   counter   public   html4   str   int   org   start   ansi   

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"  
  2.     pageEncoding="UTF-8"%>  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
  4. <html>  
  5. <head>  
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  
  7. <title>页面访问计数器</title>  
  8. </head>  
  9. <body>  
  10. <%  
  11.    Object obj=application.getAttribute("counter");  
  12.    if(obj==null){  
  13.        application.setAttribute("counter",new Integer(1));  
  14.        out.println("该页面被访问1次!<br />");  
  15.    }else{  
  16.        int counterValue=Integer.parseInt(obj.toString());  
  17.        counterValue++;  
  18.        out.println("该页面被访问"+counterValue+"次!<br />");  
  19.        application.setAttribute("counter", counterValue);  
  20.    }  
  21. %>  
  22.   
  23. </body>  
  24. </html> 

Cookie(页面访问次数)

标签:www   counter   public   html4   str   int   org   start   ansi   

原文地址:https://www.cnblogs.com/scup1122/p/8124759.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!