标签: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