码迷,mamicode.com
首页 > 编程语言 > 详细

javaweb

时间:2017-10-11 20:29:18      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:count   import   int   java   intval   ssi   访问   enc   htm   

<%@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 Interger(1);

}

else

{number =new Integer(number.intValue()+1);}

application.setAttribute("Count",number);

yourNumber=(Integer)application.getAttribute("Count");

}%>

欢迎访问本站,您是第<%=yourNumber%>个访问用户.

</body>

</html>

javaweb

标签:count   import   int   java   intval   ssi   访问   enc   htm   

原文地址:http://www.cnblogs.com/jgrs/p/7652442.html

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