javaweb

<%@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>

posted on 2017-10-11 19:20  哈哈呵  阅读(83)  评论(0)    收藏  举报

导航