如何以编程方式删除控件的视图状态?

发布于 2024-11-15 10:41:46 字数 122 浏览 3 评论 0原文

我有一个控件 RadGrid,其视图状态应保持启用状态。

仅当满足条件时,单击按钮,才应删除该控件的视图状态,以便将新值绑定到该控件。

如何以编程方式删除控件的视图状态?

非常感谢,

I have a control, RadGrid, for which viewstate should stay enabled.

Only when a condition is met, a button is clicked, the viewstate of that control should be removed so that the new values are bound to this control.

How to remove the viewstate of a Control programmatically?

Many thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

久夏青 2024-11-22 10:41:46

您可以使用以下方法从 ViewState 中删除项目:

ViewState["controlName"] = null;

但是,在此之后,您将需要重新创建控件并将其重新添加到页面,否则您的 ViewState 将与您的控件树不匹配。

You can remove an item from ViewState with:

ViewState["controlName"] = null;

However, after this, you will need to recreate the control and re-add it to the page, else your ViewState will not match your control tree.

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