ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "updateScript", "alert('删除成功!')", true);
若不是在updatepanel中需要用alert提示信息,则可以使用如下代码:
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)this.Page.ClientScript.RegisterStartupScript(Page.GetType(), "PopWin", "script language='javascript'alert('投票成功!');/script", True)
此代码不能防止刷新,但是比直接写Response.Write("scriptalert('投票成功!');/script")的用户体验要好!弹出提示框时不会造成当前页面空白!
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/webkaifa/)