<%@page contentType=”text/html;charset=GB2312″%>
<html>
<head> </head>
<body>
<%String s = session.getId(); //获取session ID号 %>
你的session对象ID是:
<%=s %> <%!
int Num = 0; //定义前面要加!号
synchronized void countPeople() { //同步方法
Num++;
}
%>
<%
if (session.isNew()) { //推断是否为新用户
countPeople();
String str = String.valueOf(Num);
session.setAttribute(“count”, str); //将str 加入到session对象中
}
%>
你是第
<%=(String)session.getAttribute(“count”)%> 个訪问本站的人
<!–将session对象的count值取出–>
</body>
</html>