如何编辑按钮,以便当我点击按钮,它带给我另一个网络表单?让我们说按钮名称是Confirm,wed表单是confirm.aspx?
protected void btnConfirm_Click(object sender,EventArgs e) { (guessing that there should be an input here) }
解决方法
你可以做一个Response.Redirect(“YourPage.aspx”);或者一个Server.Transfer(“YourPage.aspx”);在你的按钮点击事件。
所以它会像下面这样:
所以它会像下面这样:
protected void btnConfirm_Click(object sender,EventArgs e) { Response.Redirect("YourPage.aspx"); //or Server.Transfer("YourPage.aspx"); }