How do I redirect from one ASP.NET page to another (\"Webform2.aspx\") by means of a button?
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
default2.aspx