如何以编程方式删除控件的视图状态?
我有一个控件 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下方法从 ViewState 中删除项目:
但是,在此之后,您将需要重新创建控件并将其重新添加到页面,否则您的 ViewState 将与您的控件树不匹配。
You can remove an item from ViewState with:
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.