Get control values from other forms

AcidBurn23

New member
Joined
Dec 13, 2007
Messages
3
Programming Experience
3-5
Hi

How can I pass the 1st form control variables and retrieved it in my 2nd form without using the session, cookie or querystring?

Like in classic asp in the 1stform.asp you just have to specify in <form name="form1" method="post" action="2ndform.asp">
and all the value of my textbox controls, comboboxes, etc will be automatically retrieved to the 2ndform.asp.

But in .net, even If I specified the action tag of my 1stform.aspx to 2ndform.aspx, it still submits within the same page(1stform.aspx)
and when I looked at the view source it comes back to <form name="form1" method="post" action="1stform.aspx" id="form1"> it should be <form name="form1" method="post" action="2ndform.aspx" id="form1">

Any idea?


Your immediate response would be very much appreciated.


Thanks
 
Back
Top