How to redirect from one ASP.NET page to another

后端 未结 8 1974
感动是毒
感动是毒 2020-12-19 08:48

How do I redirect from one ASP.NET page to another (\"Webform2.aspx\") by means of a button?

相关标签:
8条回答
  • 2020-12-19 09:23

    Response.Redirect(string url) issues a 302 HTTP status code instructing the client to redirect to url. The browser will issue a new request for url and the URL will change in the address bar.

    Server.Transfer(string path) terminates execution of the current page and starts execution of a new page on the specified path i.e. internally within IIS. Therefore the URL in the browser address bar will not be changed. The page you transfer to must be an aspx page in the same web site.

    The differences are subtle but important. A simple way to think about this is to ask yourself "should the user bookmark/favorite this URL?". Use Response.Redirect if the URL has changed and future visits to the content should be on the new URL. Use Server.Transfer if the URL is correct and current but you need to display different content this one time - maybe you are displaying an error message or you need the user to enter their credentials to continue or there is some other reason why the content should change but the URL should not.

    Either of the above can be used within the Click event handler of an ASP.NET Button control in your code-behind:

    protected void Button1_Click(object sender, EventArgs e)
    {
        Response.Redirect("Webform2.aspx");
          // OR
        Server.Transfer("Webform2.aspx");
    }
    
    0 讨论(0)
  • 2020-12-19 09:24

    You can redirect from one page to another using Response.Redirect()

    0 讨论(0)
  • 2020-12-19 09:24

    You can redirect to another ASP.NET page using the code below :

    Response.Redirect("Webform.aspx");
    

    This is the simplest way

    0 讨论(0)
  • 2020-12-19 09:28

    Both Response.Redirect and Server.Transfer methods are used to transfer a user from one web page to another web page. Both methods are used for the same purpose but still there are some differences as follows.

    The Response.Redirect method redirects a request to a new URL and specifies the new URL while the Server.Transfer method for the current request, terminates execution of the current page and starts execution of a new page using the specified URL path of the page.

    Both Response.Redirect and Server.Transfer has same syntax like:

    Response.Redirect("UserDetail.aspx"); Server.Transfer("UserDetail.aspx");

    Before touching on more points I want to explain some HTTP status codes, these are important for the understanding of the basic differences between these two. The HTTP status codes are the codes that the Web server uses to communicate with the Web browser or user agent. Response.Redirect sends an HTTP request to the browser, then the browser sends that request to the web server, then the web server delivers a response to the web browser. For example, suppose you are on the web page "UserRegister.aspx" page and it has a button that redirects you to the "UserDetail.aspx" web page.

    0 讨论(0)
  • 2020-12-19 09:29

    You can use below code :

    protected void Button1_Click(object sender, EventArgs e) {
        Response.Redirect("default2.aspx");
    }
    

    Notice that default2.aspx is your second web page name and you

    0 讨论(0)
  • 2020-12-19 09:31

    Personally, if all you're wanting to do is load a new page when a button is clicked, I would do this with client-side script.

    You could use a JS library for this (eg: jQuery), like so:

    jQuery

    $(function() {
      $('#<%= button1.ClientID %>').click(function() { 
          window.location.href = "Webform2.aspx"; 
          });
    });
    

    ASP.NET

    <asp:Button id="button1" runat="server"/>
    

    Or, for a specifically ASP.NETesque way to do it, you can use Button.PostBackUrl as Antonio suggests, which still uses client-side script but means you don't have to write it yourself. The HTML for the button renders as:

    <input type="submit" name="button1" value="Button" onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;button1&quot;, &quot;&quot;, true, &quot;&quot;, &quot;webform2.aspx&quot;, false, false))" id="button1" />
    

    If you've got other processing to do server-side and you need to redirect afterwards, use Response.Redirect("Webform2.aspx"); in your click handler.

    If that's not working for you, please add some more detail to your question to explain what's happening.

    0 讨论(0)
提交回复
热议问题