Added: March/10/2005 at 6:52pm | IP Logged
|
|
|
Try this little scriptlet put it on 1.asp with your other code and if the check box is no it will redirect to 2.asp
<% If Not isEmpty(Request.Form("checkboxno")) Then If Request.Form("checkboxno") = "no" Then response.redirect "2.asp" Else End If End If %>
|