Control.HasChildViewState Property
.NET Framework (current version)
Gets a value indicating whether the current server control's child controls have any saved view-state settings.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Booleantrue if any child controls have saved view state information; otherwise, false.
You can avoid unnecessary calls to the ClearChildViewState method by using this property to verify that any child controls of the server control are storing view-state information.
Public Overrides Sub DataBind() MyBase.OnDataBinding(EventArgs.Empty) ' Reset the control's state. Controls.Clear() ' Check for HasChildViewState to avoid unnecessary calls to ClearChildViewState. If HasChildViewState Then ClearChildViewState() End If ChildControlsCreated = True If Not IsTrackingViewState Then TrackViewState() End If End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: