在ASP.NET中重定向之前的Javascript警报

时间:2012-08-31 06:15:01

标签: c# javascript asp.net ajax updatepanel

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

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

工作正常。

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

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

3 个答案:

答案 0 :(得分:27)

使用javascript显示提醒,然后使用相同的方式进行重定向:

ScriptManager.RegisterStartupScript(this,this.GetType(),"redirect",
"alert('Time OutAlert'); window.location='" + 
Request.ApplicationPath + "Nextpage.aspx';",true);

答案 1 :(得分:3)

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

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

window.location = "NextPage.asps";

答案 2 :(得分: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);