主题:请教一个JSP的问题
编一个jsp,如访问它的次数超过5次则打印“超过5次”。
以下是我的代码,刷新后并不能自动累加次数,请各位帮忙看看是哪里的问题,谢谢
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
jsp1
</title>
</head>
<body bgcolor="#ffffff">
<h1>
JBuilder Generated JSP
</h1>
<form method="post">
<br><br>
<%!int count=0;
%>
<%count++;%>
<%if(count>5){%>
超过5次了
<%}else{%>
<%=count%>
<%}%>
</form>
</body>
</html>
以下是我的代码,刷新后并不能自动累加次数,请各位帮忙看看是哪里的问题,谢谢
<%@ page contentType="text/html; charset=GBK" %>
<html>
<head>
<title>
jsp1
</title>
</head>
<body bgcolor="#ffffff">
<h1>
JBuilder Generated JSP
</h1>
<form method="post">
<br><br>
<%!int count=0;
%>
<%count++;%>
<%if(count>5){%>
超过5次了
<%}else{%>
<%=count%>
<%}%>
</form>
</body>
</html>