计数器小问题?请看看
tr100 2002-04-26 08:37:18 <%--Tomato-jsp-study--%>
<%@ page language="java" contentType="text/html;charset=gb2312" %>
<html>
<head>
<title>网页计数器</title>
</head>
<body>
<%if(application.getAttribute("counter")==null)
application.setAttribute("count","1");
else
application.setAttribute("count",Integer.toString(Integer.valueOf(
application.getAttribute("count").toString()).intValue()+1));%>你是第<%=application.getAttribute("count")%>位访问者
</body>
</html>
//为什么count没有反映呢?