ControlCollection.Count Property
.NET Framework 2.0
Gets the number of server controls in the ControlCollection object for the specified ASP.NET server control.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The following code example demonstrates how to use the Count property to iterate through a control's ControlCollection object. The use of the Control.HasControls property verifies that the control has child controls. If Control.HasControls returns false, the remaining code does not run.
if (HasControls()) {
for (int i = 0; i < get_Controls().get_Count(); i++) {
get_Controls().get_Item(i).RenderControl(writer);
}
}
if (HasControls()) { for (var i : int = 0; i < Controls.Count; i++) { Controls[i].RenderControl(writer); } }
Community Additions
ADD
Show: