posting data

Discussion in 'ASP.NET / ASP.NET Core' started by Swood, Oct 15, 2003.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. 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
     
  2. 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
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page