ASP.NET 4.0 中的 ViewStateMode - 向后兼容性?

发布于 2024-08-30 03:06:13 字数 158 浏览 3 评论 0原文

引入新的 ViewStateMode 属性是否是为了避免破坏现有的 EnableViewState?

在页面级别设置 EnableViewState = false 是否会导致 ViewStateMode 设置被忽略?

PS:stackoverflow中的CW是什么?

Was the new ViewStateMode property introduced to avoid breaking the existing EnableViewState?

Does setting EnableViewState = false at the page level causee the ViewStateMode setting to be ignored?

PS: What is CW in stackoverflow?

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

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

发布评论

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

评论(1

尛丟丟 2024-09-06 03:06:13

它是向后兼容的,因为默认值为 Inherit。

如果父控件已将 EnableViewState 设置为 false,则 ViewStateMode 允许子控件启用它,从而对视图状态进行更细粒度的控制。

请参阅 http:// /weblogs.asp.net/sreejukg/archive/2010/04/06/viewstatemode-in-asp-net-4-0.aspx

"页面的 ViewStateMode 属性的默认值为 Enabled。默认值页面中 Web 服务器控件的 ViewStateMode 属性的值为 Inherit 因此,如果您未在页面或控件级别设置此属性,则 EnableViewState 属性的值将决定视图状态行为。

请参阅 http://msdn.microsoft.com /en-us/library/system.web.ui.control.viewstatemode.aspx

It is backward compaitable as the default value is Inherit.

If the parent control has set EnableViewState to false then ViewStateMode allows child control to enable it giving much more fine grained control over your viewstate.

see http://weblogs.asp.net/sreejukg/archive/2010/04/06/viewstatemode-in-asp-net-4-0.aspx

"The default value of the ViewStateMode property for a page is Enabled. The default value of the ViewStateMode property for a Web server control in a page is Inherit. As a result, if you do not set this property at either the page or the control level, the value of the EnableViewState property determines view-state behavior."

See http://msdn.microsoft.com/en-us/library/system.web.ui.control.viewstatemode.aspx

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