I have an asp.net application, where the user would click a button and launch another page (within the same application). The issue I am facing is that the original page an
You should use:
protected void btn1_Click(object sender, EventArgs e) { Response.Redirect("otherpage.aspx"); }