App下载

demo_repeater3 在线工具

demo_repeater3 在线工具

<html>
<body>

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

<HeaderTemplate>
<table border="0" width="100%">
<tr>
<th align="left">Title</th>
<th align="left">Artist</th>
<th align="left">Company</th>
<th align="left">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>

<SeparatorTemplate>
<tr>
<td colspan="6"><hr></td>
</tr>
</SeparatorTemplate>

<FooterTemplate>
</table>
</FooterTemplate>

</asp:Repeater>
</form>

</html>
运行结果