asp.netasp.net-customcontrol

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?


Solution

  • 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 ?

    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).