在ASP.net中的UpdatePanel,弹窗失败解决办法
2020-12-13 03:11
标签:style blog c tar ext http
最开始我用: Response.Write("和哈呵呵呵呵呵呵!‘)"); 在没有UpdatePanel时,这个有效,能够正确弹出提示窗口。 后面,页面改进,加上局部刷新后,该方式失效了。探索出新的方式: ScriptManager.RegisterStartupScript(this.UpdatePanel1,
this.GetType(),"updateScript",
"alert(‘已审核,不能再修改!‘);", true); 经测试,能够成功弹出窗口,还可以根据自己需求,增加一个变量,用于提示: ScriptManager.RegisterStartupScript(this.UpdatePanel1,
this.GetType(),"updateScript",
"alert(‘数据错误:" + errorInfo + "!‘);",
true); 在ASP.net中的UpdatePanel,弹窗失败解决办法,搜素材,soscw.com 在ASP.net中的UpdatePanel,弹窗失败解决办法 标签:style blog c tar ext http 原文地址:http://www.cnblogs.com/lonelyxmas/p/3724856.html
文章标题:在ASP.net中的UpdatePanel,弹窗失败解决办法
文章链接:http://soscw.com/essay/27173.html