Articles in the Definition Category
Definition »
Control State, Partial Class, Iterators, Nullable – At a glance
Control State
Control State is a new feature added in Asp.net2.0 framework. Control state is very similar to View State, where value is stored in the hidden_VIEWSTATE form field, with a little difference i.e. Control State cannot be disabled. Control state is intended to be used only for storing crucial information across postbacks.
Partial Classes
Partial Classes are new feature added to the .net framework 2.0. Partial classes allow dividing up a single class into multiple class file. These …
