How to redirect from one ASP.NET page to another

后端 未结 8 1995
感动是毒
感动是毒 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: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

提交回复
热议问题