Skip to main content
.NET Framework Class Library
Control..::.HasControls Method

Determines if the server control contains any child controls.

Namespace: System.Web.UI
Assembly: System.Web (in System.Web.dll)
Syntax
Public Overridable Function HasControls As Boolean
public virtual bool HasControls()
public:
virtual bool HasControls()
abstract HasControls : unit -> bool 
override HasControls : unit -> bool 

Return Value

Type: System..::.Boolean
true if the control contains other controls; otherwise, false.
Remarks

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 Inheritors

The HasControls method should be overridden only to change metadata attributes such as EditorBrowsableAttribute. For more information about using attributes, see Extending Metadata Using Attributes.

Examples

The following example uses the HasControls method to determine if any controls exist before using the Count property to iterate through a ControlCollection object.


If HasControls() Then
    Dim i As Integer
    For i = 0 To Controls.Count - 1
        Controls(i).RenderControl(writer)
    Next i
End If


if (HasControls()) {
                 for (int i=0; i < Controls.Count; i++) {
                     Controls[i].RenderControl(writer);
                 }
   }

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.