<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<!-- 通过application实现网站访问计数器 -->
<%
int i=0;
synchronized(application){
if(application.getAttribute("time")==null){ //服务器启动后的第一位访问者
i=1;
}else{
i=Integer.parseInt((String)application.getAttribute("time"));
i++; //i + 1
}
application.setAttribute("time",Integer.toString(i));
}
%>
<table>
<tr bgcolor="lightgrey">
<td align="center">欢迎访问</td>
</tr>
<tr>
<td align="center">
您是第<b><%=i %></b>位访问本网站的游客
</td>
</tr>
</table>
</body>
</html>