原文链接:http://www.runoob.com/aspnet/aspnet-repeater.html
Repeater 控件用于:
显示 被绑定在该控件上的项目 的 重复列表。
Repeater 控件可被绑定到数据库表、XML 文件或者其他项目列表。
我们在 .aspx 页面中创建一个 Repeater 控件。 元素中的内容被首先呈现,并且在输出中仅出现一次,而 元素中的内容会对应 DataSet 中的每条 “record” 重复出现,最后, 元素中的内容在输出中仅出现一次:
<html>
<body>
<form runat="server">
<asp:Repeater id="cdcatalog" runat="server">
<HeaderTemplate>
...
</HeaderTemplate>
<ItemTemplate>
...
</ItemTemplate>
<FooterTemplate>
...
</FooterTemplate>
</asp:Repeater>
</form>
</body>
</html>
通过 <%#Container.DataItem(“fieldname”)%> 绑定数据项目到 区域内的单元格中:
使用 AlternatingItemTemplate
您可以在 ItemTemplate元素后添加 AlternatingItemTemplate 元素,用来描述输出中交替行的外观。在下面的实例中,表格每隔一行就会显示为浅灰色的背景:
使用 SeparatorTemplate
SeparatorTemplate 元素用于描述每个记录之间的分隔符。在下面的实例中,每个表格行之间插入了一条水平线: