A TRepeaterItem control represents an item in the TRepeater control, such as heading section, footer section, or a data item. The data items are stored in the Items property of TRepeater control. The index and data value of the item can be accessed via Index and Data properties, respectively.
Namespace: System.Web.UI.WebControls
Properties
Index, mixed
Gets or sets the key of the data item (in the datasource if it is an associative array)
ItemIndex, integer
Gets or sets the index of the data item (in the TReapter.Items collection)
Data, mixed
Gets or sets the value of the data item.
Type, mixed
Gets or sets the type of the item (Header, Footer, Item, Separator)
This method overrides parent's implementation to bubble OnItemCommand event if an OnCommand event is bubbled from a child control. This method should only be used by control developers.