Hi i'm making a quiz that rates their answers and redirects them to another page based on their answers. instead of the form confimation page, i would like to use some response.redirect "other.asp" pages which i would naturally put in the asp. but, my question to you on how i would go about doing this--> i don't want to send to database or email, just open up the page.asp that the person is directed to based on the calculations. How could i do this?
Stuey -> RE: Form Confirmation (10/3/2001 20:45:00)
You need to arive a value that allows you to decide where you want them to go.
you send them to a page that says
IF Firstname = "bob" then response.redirect("bobspage.asp") End if
IF Firstname = "Jane" then response.redirect("janespage.asp") End if