WebControl.TrackViewState Method

Definition

Causes the control to track changes to its view state so they can be stored in the object's ViewState property.

protected:
 override void TrackViewState();
protected override void TrackViewState ();
override this.TrackViewState : unit -> unit
Protected Overrides Sub TrackViewState ()

Remarks

The TrackViewState method is used primarily by control developers.

The TrackViewState marks the starting point at which to begin tracking and saving changes to the view state for the control. The TrackViewState method is called automatically by ASP.NET when a server control is initialized.

Applies to

See also