asp.net ajax 弹不出alert对话框的解决办法

 

asp.net ajax 弹不出alert对话框的解决办法


 ScriptManager.RegisterClientScriptBlock(UpdatePanel1, this.GetType(), "click", "alert('ok')", true);

使用上面这段代码即可正常弹出alert对话框,我使用的是asp.net ajax 1.0正式版(版本号: 1.0.61025.0)

如果在页面中有多个UpdatePanel,如果每个UpdatePanel的UpdateMode都是“always”[默认值]的话,

那么你使用那个UpdatePanel的实例作为参数都可以;如果每个UpdaePanel的UpdateMode=conditional,

那么你必须使用正在更新的那个UpdatePanel作为参数,这样脚本才能起作用。

你可能感兴趣的:(asp.net)