checkbox.asp页
<html>
<body>
<form name="form1" method="post" action="checkbox.asp">
<p>
<input name="checkbox1" type="checkbox" id="checkbox1" value="checkbox1">
</p>
<p> <input type="checkbox" name="checkbox1" value="checkbox2">
</p>
<p>
<input type="checkbox" name="checkbox1" value="checkbox3">
</p>
<p> <input type="submit" name="Submit" value="提交">
</p>
</form>
<%if request.form("submit")="提交" then
result=request.form("checkbox1")
response.Write result
end if
%>
</body>
</html>
checkbox1.asp页
<%if request.form("submit")="提交" then
result=request.form("ChkTest")
response.Write result
end if
%>
刚杀完毒(确有毒).
按说这两个页面没有联系了吧,但现在运行checkbox.asp页,还是由checkbox1.asp页来处理.
问题在哪?急死人了!!!!