Repeater.Controls 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 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,它包含 Repeater 控件的子控件。
注解
使用 Controls 集合管理控件的 Repeater 子控件。 它通常用于从集合中检索子控件。 还可以从集合中添加和删除子控件。
备注
若要访问控件中的 Repeater 子控件,请 Repeater 循环访问控件的 Items 集合以检索 RepeaterItem 给定索引。 然后调用 Repeater 项的继承 FindControl 方法以检索具有特定 ID 的控件。