Page Posting

How do you post a current page to different ASPx page?

Questions by ushalakshmi   answers by ushalakshmi

Showing Answers 1 - 24 of 24 Answers

bb.geetha

  • Jun 25th, 2008
 

ASP.NET provides the following ways for you to build redirection into your Web pages:

  • Using hyperlinks on pages.

  • Configuring cross-page posting, which enables you to specify an alternate target page when the current page is submitted.

  • Redirecting programmatically by forcing the browser to request a different page.

  • Redirecting programmatically by transferring control to a different page in the same Web application.

crazy541

  • Jul 24th, 2008
 

Actually there are various methods for this1. Server.Tranfer()2.Server.Execute()3.Response.redirect()4.Through Jscripts window.open()5.Through hyperlink6.through cross links

 protected void Page_Load
   
        {
            Response.Redirect("webform.aspx");       
        }
 

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions