关于一道JSP session的网页计数器问题 35
代码如下:<%@pagelanguage="java"contentType="text/html;charset=GB18030"pageEncoding="GB180...
代码如下:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Insert title here</title>
</head>
<body background="http://pic1.nipic.com/2008-08-28/2008828101810420_2.jpg">
<center>
<%! int number=0;
synchronized void countpeople()
{
number++;
}
%>
<%
if(session.isNew())
{
countpeople();
String str=String.valueOf(number);
session.setAttribute("count",str);
}
%>
<p>您是第 <%=(String)session.getAttribute("count")%>个访问本站的人。
<input type="button" value="关闭" onclick=javascript:self.close()>
</p>
</center>
</body>
</html>
我在MyEclipse下的浏览器可以得到 1位用户的提示
但上传到空间里面 再访问得到的是 null位用户,
不知道这是什么原因?? 展开
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Insert title here</title>
</head>
<body background="http://pic1.nipic.com/2008-08-28/2008828101810420_2.jpg">
<center>
<%! int number=0;
synchronized void countpeople()
{
number++;
}
%>
<%
if(session.isNew())
{
countpeople();
String str=String.valueOf(number);
session.setAttribute("count",str);
}
%>
<p>您是第 <%=(String)session.getAttribute("count")%>个访问本站的人。
<input type="button" value="关闭" onclick=javascript:self.close()>
</p>
</center>
</body>
</html>
我在MyEclipse下的浏览器可以得到 1位用户的提示
但上传到空间里面 再访问得到的是 null位用户,
不知道这是什么原因?? 展开
2个回答
展开全部
<body>
<center>
<%
if(session.isNew()) {
if(application.getAttribute("count")==null){
application.setAttribute("count",0);
session.setAttribute("count",(Integer)application.getAttribute("count")+1);
}else{
application.setAttribute("count",(Integer)application.getAttribute("count")+1);
session.setAttribute("count",(Integer)application.getAttribute("count")+1);
}
}
%>
<p>
<%=session.getAttribute("count")%>th
<input type="button" value="close" onclick="javascript:self.close()" />
</p>
</center>
</body>
<center>
<%
if(session.isNew()) {
if(application.getAttribute("count")==null){
application.setAttribute("count",0);
session.setAttribute("count",(Integer)application.getAttribute("count")+1);
}else{
application.setAttribute("count",(Integer)application.getAttribute("count")+1);
session.setAttribute("count",(Integer)application.getAttribute("count")+1);
}
}
%>
<p>
<%=session.getAttribute("count")%>th
<input type="button" value="close" onclick="javascript:self.close()" />
</p>
</center>
</body>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询