multiple page form

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

Is there a way for a web form to submit to another web form and still use
the form elements like text box's etc..? It appears that the second page
would not know what form elements were on the first form. How should this
be handled? I know you can do it using the request object but I rather use
the form elements if possible. I need to do this because my application is
a multiple page form, where the next form is dynamic and depends on the
results of the previous form.
 
Is there a way for a web form to submit to another web form and still use
the form elements like text box's etc..? It appears that the second page

A WebForm can only submit to itself.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Bill,
I don't think you will find an easy way to do this. You
either have to use Request, Session, or multiple hidden
panels in one page. Alternatively, you can look at
Server.Transfer method.

Tu-Thach
 
Back
Top