ASP.NET custom control control state
What is the advantage of using control state instead of 开发者_如何转开发view state when I create a custom control in ASP.NET?
Why use control state?
Does a good article about this exist?
The difference between ViewState and ControlState is that ViewState can be disabled by the developer, whereas ControlState cannot be disabled.
Therefore, when developing custom controls, when to use ViewState or ControlState ?
- Essential data which has to persist across postbacks with ViewState disabled and which is necessary for the proper functioning of the custom control should be put into ControlState.
- All other data: use ViewState.
Typically, if the persistence of the data can be viewed as a feature, use ViewState. For example, in some scenarios, it is convenient when a DropDownList saves all its items in ViewState, and in other scenarios it is preferable to just rebind the control (and keep the page size and amount of data to post low).
精彩评论