ASP.NET按钮重定向到另一个页面

前端之家收集整理的这篇文章主要介绍了ASP.NET按钮重定向到另一个页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何编辑按钮,以便当我点击按钮,它带给我另一个网络表单?让我们说按钮名称是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");
}
原文链接:https://www.f2er.com/aspnet/252379.html

猜你在找的asp.Net相关文章