如何在重定向到VB.NET中的同一页面之前显示Javascript警报消息?

时间:2015-11-06 06:08:09

标签: asp.net vb.net

在按钮点击期间显示警告消息后,我尝试使用以下代码重定向到同一页面。

ScriptManager.RegisterStartupScript(Me, Page.GetType(), "AlertMsg", "alert('Success');", True)
Response.Redirect(Request.Url.AbsoluteUri)

但页面重定向到同一页面而不抛出Javascript警报消息。如何解决这个问题?

3 个答案:

答案 0 :(得分:2)

在提出问题之前..请查看有关相同主题的已问问题....以下是stackoverflow上的不同答案链接..

How to get alert message before redirect a page

Javascript Alert before redirecting in ASP.NET

Asp.net Webform Display Alert and redirect

答案 1 :(得分:1)

ScriptManager.RegisterStartupScript(this,this.GetType(),"page redirect",
"alert('Message'); window.location='" + 
Request.Url.AbsoluteUri+"';",true);

答案 2 :(得分:1)

试试这个

ScriptManager.RegisterStartupScript(Me, Me.[GetType](), "AlertMsg", "alert('Success');window.location ='"+Request.Url.AbsoluteUri+"';", True)