What are the properties(of server control) that are stored in the ViewState in ASP.NET
See Understanding ASP.NET View State
ViewState is a dictionary-type object that stores, by default, the state of all the controls in the markup of your page. You can also programmatically add values to ViewState:
ViewState["MyStoredValue"] = 15;
You can use page-level tracing to inspect the contents of ViewState when debugging.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With