ViewState 的状态

发布于 2024-10-31 15:26:35 字数 156 浏览 1 评论 0原文

我一直在尝试使用页面的另一个用户控件在页面的用户控件之一中分配的 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 技术交流群。

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

发布评论

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

评论(1

究竟谁懂我的在乎 2024-11-07 15:26:35

这是设计使然 - 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.

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