I am trying to create a form that when submited directs the user to one of five other forms based on their input.
What I doing on the user input form
<FORM method=post action=redirect.asp>
then on redirect.asp they are sent to another page with the Response.Redirect method
The problem I am having is that this last page the Form collection from the original input form is gone and I still need that information.
How do I get the user input information from the first page, past the second page, and on to the thrid page?
(Or is there a better approach?)
Thanks...
What I doing on the user input form
<FORM method=post action=redirect.asp>
then on redirect.asp they are sent to another page with the Response.Redirect method
The problem I am having is that this last page the Form collection from the original input form is gone and I still need that information.
How do I get the user input information from the first page, past the second page, and on to the thrid page?
(Or is there a better approach?)
Thanks...