我是靠谱客的博主 平常路灯,最近开发中收集的这篇文章主要介绍asp.net中执行到Response.write("xx");这段语句时出现下面的情况,请问如何改正? ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在放置了UpdatePanel时,即便是设置了PostBackTrigger 也无法Response.Write();正常情况下,微软推荐我们是这么用的:
string scripts = "<script>alert('弹出提示框!');</script>";
ClientScriptManager csm = Page.ClientScript;
csm.RegisterClientScriptBlock(this.GetType(), "sss", scripts, false);
//csm.RegisterStartupScript(this.GetType(),"sss",scripts,false);
如果还不行你就用专门针对UpdatePanel控件的:
ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "updateScript", "alert('房间号不存在!');", true);
你只需将alert('房间号不存在!');改成你输出的脚本即可!
Hi, When you use update panel then you can not call javascript like this .. Try Following Code, string CloseWindow; CloseWindow = "alert('Hello World')"; ScriptManager.RegisterStartupScript(UpdatePanelID,UpdatePanelID.GetType(), "CloseWindow", CloseWindow, true);

最后

以上就是平常路灯为你收集整理的asp.net中执行到Response.write("xx");这段语句时出现下面的情况,请问如何改正? 的全部内容,希望文章能够帮你解决asp.net中执行到Response.write("xx");这段语句时出现下面的情况,请问如何改正? 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部