Gets a System.Web.UI.ControlCollection that contains the child controls of the System.Web.UI.WebControls.Repeater control.
a System.Web.UI.ControlCollection
Use the Repeater.Controls collection to manage the child controls of the System.Web.UI.WebControls.Repeater control. It is commonly used to retrieve a child control from the collection. You can also add and remove child controls from the collection.
To access a child control within a System.Web.UI.WebControls.Repeater control, iterate through the System.Web.UI.WebControls.Repeater control's Repeater.Items collection to retrieve the System.Web.UI.WebControls.RepeaterItem for a given index. Then call the Repeater item's inherited System.Web.UI.Control.FindControl(string) method to retrieve a control with a particular ID.