关于一道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位用户,
不知道这是什么原因??
展开
 我来答
仓库狗转运集运系统
2010-04-13 · 超过30用户采纳过TA的回答
知道答主
回答量:174
采纳率:0%
帮助的人:109万
展开全部
<%! int number=0;

把这段话换为

<% int number=0;

试下,多了感叹号,好像就是有问题了,JSP代码是在<% %>

这样里面运行的,家了感叹号就不行了,至于为什么我忘记了, 你要是知道你也把答案说下
duizhang_0001
2010-04-06 · TA获得超过125个赞
知道答主
回答量:99
采纳率:0%
帮助的人:85.3万
展开全部
<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>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式