ViewStateMode Disabled but still getting ViewState element(ViewStateMode 已禁用但仍获取 ViewState 元素)
问题描述
我有一个 ASP.NET 4.0 webforms 站点,我有 MasterPage,所以它被设置为 ViewStateMode="Disabled"
以及类似设置的内容占位符.
I have a ASP.NET 4.0 webforms site where I have the MasterPage so it is set to ViewStateMode="Disabled"
along with the content placeholders being set similarly.
当我查看我的页面时,我仍然会看到呈现的 ViewState 字段,然后我尝试将 ViewStateMode="Disabled" 添加到页面级别,但没有任何改变.
When I'd view my page I'd still see a ViewState field rendered, I then tried adding the ViewStateMode="Disabled" to the page level also but that didn't change anything.
推荐答案
我不知道框架 4 对 ViewState 的最新更改,但您必须考虑到呈现给客户端的 ViewState 字段有 2 个组件:ViewState 本身和 ControlState.
I'm not aware of latest changes on ViewState for the framework 4 but you have to take into account that the ViewState field rendered to the client has 2 components: ViewState itself and ControlState.
无论您是否启用了 ViewState,ControlState 总是在 viewstate 字段上发送给客户端.
The ControlState is ALWAYS sent to the client on the viewstate field no matter if you have enabled ViewState or not.
因此,您可以期望大幅减少发送到客户端的视图状态字段的大小,但不会完全删除它.
So you can expect to drastically reduce the size of the viewstate field sent to the client but not completely remove it.
控件状态包含控件需要在回发中保持以按预期工作的最少内容.
Control state contains the minimal things that a control needs to persist across postbacks in order to work as expected.
控制状态
除了视图状态,ASP.NET 还支持控件状态.页面使用控件状态来保存必须在回发之间保留的控件信息,即使页面或控件的视图状态被禁用.与视图状态一样,控件状态存储在一个或多个隐藏字段中.
In addition to view state, ASP.NET supports control state. The page uses control state to persist control information that must be retained between postbacks, even if view state is disabled for the page or for a control. Like view state, control state is stored in one or more hidden fields.
http://msdn.microsoft.com/en-us/library/bb386448.aspx
这篇关于ViewStateMode 已禁用但仍获取 ViewState 元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ViewStateMode 已禁用但仍获取 ViewState 元素


- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04