|
 |
aspdotnet_website_programming thread: Web Forms
Message #1 by "Paul Whygle" <paul@w...> on Sun, 2 Feb 2003 00:59:45
|
|
How do you open another Webform by hardcoding it?
For instance, say a user clicks an HTML submit button and all the data
they entered checks out (or doesn't), how can I navigate to a page based
off of thier information?
Thank you.
Paul
Message #2 by ryan@e... on Sun, 2 Feb 2003 13:54:53
|
|
How do you open another Webform by hardcoding it?
For instance, say a user clicks an HTML submit button and all the data
they entered checks out (or doesn't), how can I navigate to a page based
off of thier information?
Thank you.
Paul
********************
If you use a web forms submit button you can use
Response.Redirect("example.aspx")
Or
Server.Transfer("example.aspx")
The Redirect has an overload to specify whether or not to terminate
execution of the current page.
Hope this helps!
Ryan Stevens
|
|
 |