How do I code the button such that when I click the button and it brings me to another web form? Let\'s say the button name is Confirm and the wed form is confirm.aspx ?
u can use this:
protected void btnConfirm_Click(object sender, EventArgs e) { Response.Redirect("Confirm.aspx"); }