在 C# 中运行时更改脚本管理器的启用部分渲染值

发布于 2024-12-22 23:50:03 字数 351 浏览 0 评论 0原文

我需要更改运行时在脚本管理器内声明的启用部分渲染值。在我的网站中,脚本管理器在母版页中声明。

下面给出了示例代码

((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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落花随流水 2024-12-29 23:50:03

根据错误,将该代码移至页面初始化或页面预初始化事件。

Move that code to the page init or page preinit event, according to the error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文