gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 17:45:04 25 4
gpt4 key购买 nike

如何对按钮进行编码,以便当我单击该按钮时,它会将我带到另一个 Web 表单?假设按钮名称是“Confirm”,婚礼表单是“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");
}

关于用于重定向到另一个页面的 ASP.NET 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23976683/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com