PDA

View Full Version : posting data


Swood
10-15-2003, 06:24 AM
How can I post data from one aspx page to another aspx page?
I know that posting from an html page is done with a submit
button but I can't seem to do this from an aspx page..

HELP!!
thanks

AllanS
10-20-2003, 01:02 AM
The submit button would do a postback and run the code in the button's click event. From there you can redirect to another page, save use input or whatever.

After doing classic ASP and HTML for years, I like this technique better because I have more control.

Depending on what you are doing, you might want to look at using Server.Transfer instead of a Response.Redirect.



Allan Sieker
Eureka, MO