Click to Rate and Give Feedback
MSDN
MSDN Library
Visual Studio 2005
Visual Studio
Web Pages
Learning More
 How to: Post ASP.NET Web Pages to a...
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
ASP.NET 
How to: Post ASP.NET Web Pages to a Different Page 

By default, controls on ASP.NET Web pages that cause a postback, such as the Button control, post back to the page for processing. However, you can configure controls to post to a different page. For example, you might be creating a multi-page form that collects different information on each page.

On the target page, you can read the values of controls or public properties from the source page. For more information, see Cross-Page Posting in ASP.NET Web Pages.

To post an ASP.NET Web page to another page

  1. Add a button control to your Web page, such as a Button, LinkButton, or ImageButton control.

  2. Set the PostBackUrl property for the control to the URL of the page to which you want to post the ASP.NET Web page.

    The following code example illustrates a Button control that is configured to post to a page named TargetPage in the root of the Web site.

    <asp:Button 
      ID="Button1" 
      PostBackUrl="~/TargetPage.aspx"
      runat="server"
      Text="Submit" />

    For more information, see How to: Pass Values Between ASP.NET Web Pages.

See Also

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker