gpt4 book ai didi

c# - 使用 C# 显示消息后重定向页面

转载 作者:行者123 更新时间:2023-11-30 22:00:37 25 4
gpt4 key购买 nike

我只是想先显示消息,然后将用户重定向到另一个页面。我遇到的问题是它没有首先显示消息,而是以正确的方式重定向页面。这是我的代码

if (some condition == true)
{
string message = string.Empty;
message = "Success. Please check your email. Thanks.";
ClientScript.RegisterStartupScript(GetType(), "alert", "alert('" + message + "');", true);

Response.Redirect("Login.aspx");
}

最佳答案

获得结果的最佳方法是使用 Javascript(客户端)异步执行。

如果你想在服务器端做,这里有一个例子:

protected void btnRedirect_Click(object sender, EventArgs e)
{
string message = "You will now be redirected to YOUR Page.";
string url = "http://www.yourpage.com/";
string script = "window.onload = function(){ alert('";
script += message;
script += "');";
script += "window.location = '";
script += url;
script += "'; }";
ClientScript.RegisterStartupScript(this.GetType(), "Redirect", script, true);
}

关于c# - 使用 C# 显示消息后重定向页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28385468/

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