Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 457
Pranay Rana Avatar asked Feb 05 '26 16:02

Pranay Rana


1 Answers

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

like image 140
marapet Avatar answered Feb 08 '26 06:02

marapet