|
||
You can modify the appearance of the BasicRepeater control by setting the standard properties and templates inherited from the ASP.NET Repeater control. You can find more details on particular properties in the .NET Framework documentation for the Repeater class.
The following templates can be defined:
Template Name |
Description |
Sample Value |
AlternatingItemTemplate |
Code of the template applied to alternating items. |
|
FooterTemplate |
Code of the template used for the footer of the list. |
|
HeaderTemplate |
Code of the template used for the header of the list. |
|
ItemTemplate |
Code of the template applied to standard items. |
<div style="width: 100%"> <h3> <%# Eval("CellName") %> </h3> <%# EcommerceFunctions.GetProductImage(Eval("SKUImagePath"), 200) %> </div> |
SeparatorTemplate |
Code of the template used for separating items. |