I haven't started learning Asp.Net 4.0 yet, but I read a little in ViewState, where there is a new ViewStateMode property. In earlier versions of Asp.Net, if the parent had the ViewState disabled, the child controls also disabled the ViewState, even if EnableViewState was set to true.
a) So, if I understand it correctly, then the C child control having the ViewStateMode property set to Enable causes C to keep its view state, even if the parent control is disabled?
b) Is there a reason why the ViewStateMode hasnt / property could not be implemented in earlier versions of Asp.Net?
thanks
source share