Control.HasControls Method
Determines if the server control contains any child controls.
Namespace: System.Web.UI
Assembly: System.Web (in System.Web.dll)
Since this method simply determines if any child controls exist, it can enhance performance by allowing you to avoid an unnecessary Count property call. Calls to this property require a ControlCollection object to be instantiated. If there are no children, this object creation wastes server resources.
Notes to InheritorsThe HasControls method should be overridden only to change metadata attributes such as EditorBrowsableAttribute. For more information about using attributes, see Extending Metadata Using Attributes.
The following example uses the HasControls method to determine if any controls exist before using the Count property to iterate through a ControlCollection object.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.