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

统计网站访问人数示例

时间:2017-11-05 14:28:13      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:blog   val   http   img   ber   import   app   odi   访问   

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>

<html>
  <head>   <title>统计网站访问人数页面</title>  </head>
  
  <body>
   <%!Integer yourNumber=new Integer(0); %>
   <%if(session.isNew()){
        Integer number=(Integer)application.getAttribute("Count");
        if(number==null)
        {number=new Integer(1);}
        else
        {number=new Integer(number.intValue()+1);}
        application.setAttribute("Count",number);
        yourNumber=(Integer)application.getAttribute("Count");
   }
    %>
    欢迎访问本站,您是第<%=yourNumber %>个访问用户!
  </body>
</html>

  技术分享

统计网站访问人数示例

标签:blog   val   http   img   ber   import   app   odi   访问   

原文地址:http://www.cnblogs.com/www-x/p/7787246.html

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