在 C# 中运行时更改脚本管理器的启用部分渲染值
我需要更改运行时在脚本管理器内声明的启用部分渲染值。在我的网站中,脚本管理器在母版页中声明。
下面给出了示例代码
((System.Web.UI.ScriptManager)this.Master.FindControl("scriptmgr")).EnablePartialRendering = true;
在执行上面的行时我收到错误
“Init 后无法更改 EnablePartialRendering 属性 事件。”
如何解决该错误,我需要为特定页面动态启用部分渲染值。
提前致谢...
I need to change Enable Partial Rendering value which is declared inside a script manager during runtime. In my website script manager is declared in master page.
Sample code is given below
((System.Web.UI.ScriptManager)this.Master.FindControl("scriptmgr")).EnablePartialRendering = true;
While executing the above line i am getting an error
"The EnablePartialRendering property cannot be changed after the Init
event."
How to solve the error and i need enable partial rendering value dynamically for a particular page.
thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据错误,将该代码移至页面初始化或页面预初始化事件。
Move that code to the page init or page preinit event, according to the error.