IStateManager.IsTrackingViewState Property
.NET Framework 3.0
When implemented by a class, gets a value indicating whether a server control is tracking its view state changes.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
// Implement the IsTrackingViewState method for this class
// by calling the IsTrackingViewState method of the class's
// private _viewState property.
/** @property
*/
public boolean get_IsTrackingViewState()
{
return ((IStateManager)_viewState).get_IsTrackingViewState();
} // get_IsTrackingViewState
Community Additions
ADD
Show: