Gets a value indicating whether the control participates in loading its view state by Control.ID instead of index.
Documentation for this section has not yet been entered.
By default, when a parent control loads view state into child controls it creates, it does this by the position of each child control in the parent control's Control.Controls collection. When view state is initially applied, all child controls might not have been created. In this case, the view state for controls not yet created is saved, and applied when the child controls are created later.
For a parent control to apply view state to its child controls, two conditions must be met:
On postback, the parent control must create the child controls in exactly the same order as the previous request so that the order of the controls remains consistent.
After postback, any child controls created must be added to the end of the parent control's Control.Controls collection.
If these two conditions cannot be met, as in the case of the delayed creation of a child control, the parent control can load view state by using Control.ID. To set the Control.LoadViewStateByID property to true, use the System.Web.UI.ViewStateModeByIdAttribute metadata attribute for the parent control.