Repeater.Controls 属性

定义

获取 ControlCollection,其中包含 Repeater 控件的子控件。

public:
 virtual property System::Web::UI::ControlCollection ^ Controls { System::Web::UI::ControlCollection ^ get(); };
public override System.Web.UI.ControlCollection Controls { get; }
member this.Controls : System.Web.UI.ControlCollection
Public Overrides ReadOnly Property Controls As ControlCollection

属性值

ControlCollection

一个 ControlCollection,它包含 Repeater 控件的子控件。

注解

使用 Controls 集合管理控件的 Repeater 子控件。 它通常用于从集合中检索子控件。 还可以从集合中添加和删除子控件。

备注

若要访问控件中的 Repeater 子控件,请 Repeater 循环访问控件的 Items 集合以检索 RepeaterItem 给定索引。 然后调用 Repeater 项的继承 FindControl 方法以检索具有特定 ID 的控件。

适用于

另请参阅