11

我正在使用以下代码在更新面板中更新时显示消息

string jv = "alert('Time OutAlert');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "msg", jv, true);

它工作正常。

但是当我在它之后使用重定向时,它会加载页面而不显示消息。我希望用户看到该消息,单击“确定”后它应该重定向。

string jv = "alert('Time OutAlert');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "msg", jv, true);
Response.Redirect("~/Nextpage.aspx");
4

3 回答 3

28

使用 javascript 显示警报,然后使用相同的方法进行重定向:

ScriptManager.RegisterStartupScript(this,this.GetType(),"redirect",
"alert('Time OutAlert'); window.location='" + 
Request.ApplicationPath + "Nextpage.aspx';",true);
于 2012-08-31T06:29:48.533 回答
3

您不能这样做,您尝试的方式是因为消息在客户端运行,但是您在页面加载之前对后面的代码进行重定向以显示消息。

这样做的方法是在消息之后立即调用客户端重定向为:

window.location = "NextPage.asps";
于 2012-08-31T06:20:38.403 回答
0

这工作正常

                string message = "Upadate Successfull !!";
                string url = "/Post.aspx";
                string script = "{ alert('";
                script += message;
                script += "');";
                script += "window.location = '";
                script += url;
                script += "'; }";
                ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "alert", script, true);
                
于 2014-11-22T08:25:31.640 回答