码迷,mamicode.com
首页 > Web开发 > 详细

网站计数器

时间:2015-04-27 00:40:31      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:计数器   网站   访问者   

一个简单的网站计数器方法:
----------------------------------------------------------------
<body>
  <%Integer count = (Integer)application.getAttribute("count");
  if(count==null){
  count=1;
  }else{
  count++;
  }
  application.setAttribute("count",count);
   %>
   <p>欢迎访问,您是第<%= count %>个访问者</p>
  </body>

---------------------------------------------------------------


本文出自 “三金先生” 博客,请务必保留此出处http://275869227.blog.51cto.com/10029174/1638773

网站计数器

标签:计数器   网站   访问者   

原文地址:http://275869227.blog.51cto.com/10029174/1638773

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