在按钮点击期间显示警告消息后,我尝试使用以下代码重定向到同一页面。
ScriptManager.RegisterStartupScript(Me, Page.GetType(), "AlertMsg", "alert('Success');", True)
Response.Redirect(Request.Url.AbsoluteUri)
但页面重定向到同一页面而不抛出Javascript警报消息。如何解决这个问题?
答案 0 :(得分:2)
在提出问题之前..请查看有关相同主题的已问问题....以下是stackoverflow
上的不同答案链接..
How to get alert message before redirect a page
答案 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)