-----------------------------------------------------------chick.asp------------------------------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<% dim req
dim name
session("req")=request.form("sumbit")
if session("req")="确定"
session("name")=true
end if
if session("name")<>true then
response.redirect("jinru.asp")
%>
<%end if%>
<% nn=request.Form("ss")
mm=request.Form("sw")
sub check()
dim mm
dim nn
FF=0
if nn="同意" then
application.Lock
application("RR")=application("RR")+1
application.unlock
end if
if mm="反对" then
application.lock
application("FF")=application("FF")+1
application.unlock
end if%>
<%=application("RR")%><BR>
<%=application("FF")%>
<%=session("name")%>
<%
end sub
%>
<body>
<%="欢迎"&session("name")&"来发表意见"%>
<%form()%>
<P><%check()%>
</body>
</html>
<% sub form()%>
<FORM action="check.asp" method="get">
<input type="submit"name="ss" value="同意">
<input type="submit" name="sw" value="反对">
</FORM>
<%end sub%>
---------------------------------------------------------------jinru.asp---------------------------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form action="check.asp" method="post">
请先输入你的名字:<p>
姓名:<input type="text" name="name">
<input type="submit" name="submit" value="确定">
</form>
</body>
</html>
为什么在在进入check,asp这个页面的时候,只要一点击“同意”或者是“反对”,就回到了jinru.asp,即便是没有进入jinru.asp这个页面,点击“同意”或者是“反对”也没什么变化,不知道是为什么,还请个位帮忙解决一下,在下万分感激。