ViewState 的状态
我一直在尝试使用页面的另一个用户控件在页面的用户控件之一中分配的 ViewState 变量 ViewState["username"] 。
ViewState 的值似乎为空。
页面内的用户控件无法读取彼此的 ViewState 值。
谢谢, 毗湿奴
I have been trying to use a ViewState variable ViewState["username"] assigned in the one of the usercontrol of the page from one other usercontrol of the page.
The value of ViewState seems to be null.
Y cant usercontrols within a page read the ViewState values of eachother.
Thanks,
Vishnu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是设计使然 - ASP.NET 将区分各种控件(实例)的视图状态。这种区分是基于对照 ID 的。这是必需的,因为否则控件作者无法使用相同的视图状态键,并且无法知道其他控件作者可能使用哪些键。
对于您的情况,我建议您将数据存储到页面级别的视图状态中,并通过属性将其传递到您的用户控件(从页面)。
This by design - ASP.NET will differentiate between view-state of various (instances of) controls. This differentiation is based on control ID. It is needed because otherwise control author cannot use same view-state key and there is no way of knowing what keys might be used by other control authors.
In your case, I will suggest that you store the data into view-state at page level and pass it to your user controls (from page) via properties.