App下载

demo_dbconn_repeater 在线工具

demo_dbconn_repeater 在线工具

<html>
<body>

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

<HeaderTemplate>
<table border="1" width="100%">
<tr bgcolor="#b0c4de">
<th>Companyname</th>
<th>Contactname</th>
<th>Address</th>
<th>City</th>
</tr>
</HeaderTemplate>

<ItemTemplate>
<tr bgcolor="#f0f0f0">
<td><FONT COLOR=#ff0000><%#Container.DataItem("companyname")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("contactname")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("address")%></FONT>&nbsp;</td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("city")%></FONT>&nbsp;</td>
</tr>
</ItemTemplate>

<FooterTemplate>
</table>
</FooterTemplate>

</asp:Repeater>
</form>

</body>
</html>
运行结果