ASP.NET ViewState Tips and Tricks #1
- by João Angelo
In User Controls or Custom Controls DO NOT use ViewState to store non public properties.
Persisting non public properties in ViewState results in loss of functionality if the Page hosting the controls has ViewState disabled since it can no longer reset values of non public properties on page load.
Example:
public class ExampleControl : WebControl…