App下载

demo_repeater2 在线工具

demo_repeater2 在线工具

<html>
<body>

<form runat="server">
<asp:Repeater id="cdcatalog" runat="server">

<HeaderTemplate>
<table border="1" width="100%">
<tr>
<th>Title</th>
<th>Artist</th>
<th>Company</th>
<th>Price</th>
</tr>
</HeaderTemplate>

<ItemTemplate>
<tr>
<td><FONT COLOR=#ff0000><%#Container.DataItem("title")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("artist")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("company")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("price")%></FONT>&nbsp;</td>
</tr>
</ItemTemplate>

<AlternatingItemTemplate>
<tr bgcolor="#e8e8e8">
<td><FONT COLOR=#ff0000><%#Container.DataItem("title")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("artist")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("company")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("price")%></FONT>&nbsp;</td>
</tr>
</AlternatingItemTemplate>

<FooterTemplate>
</table>
</FooterTemplate>

</asp:Repeater>
</form>

</html>
运行结果