| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 623 人关注过本帖
标题:计数器问题
只看楼主 加入收藏
nsqq
Rank: 1
等 级:新手上路
帖 子:71
专家分:0
注 册:2007-7-4
收藏
 问题点数:0 回复次数:1 
计数器问题

不知道怎么改这个程序,大虾帮忙
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<%!
synchronized void countPeople()
{
ServletContext application =getServletContext();
Integer number= (Integer)application.getAttribute("Count");


if (number==null){
number=new Integer(1);
application.setAttribute("Count",number);
}
else {
number= new Integer(number.intValue()+1);
application.setAttribute("Count",number);
}

}
%>
<%! Integer yourNumber= new Integer(0);
if( session.isNew()){
countPeople();
yourNumber = (Integer)application.getAttribute("Count");

}
%>
<P><P>欢迎你:你是第
<% =yourNumber %>
位来客
</body>
</html>

搜索更多相关主题的帖子: 计数器 
2007-11-17 11:06
csight
Rank: 1
等 级:新手上路
威 望:1
帖 子:293
专家分:0
注 册:2006-6-11
收藏
得分:0 

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>JSP Page</title>
</head>
<body>
<%
ServletContext app =getServletContext();
Integer number= (Integer)app.getAttribute("Count");
if(number==null){
number=new Integer(1);
application.setAttribute("Count",number);
}
else
{
number= new Integer(number.intValue()+1);
application.setAttribute("Count",number);
}
%>
<P><P>欢迎你:你是第<%=((Integer)app.getAttribute("Count")).intValue()%> 位来客
</body>
</html>

[此贴子已经被作者于2007-11-17 11:18:12编辑过]


头可断,发型不可乱;血可流,皮鞋不可不擦油;
2007-11-17 11:17
快速回复:计数器问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032436 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved