<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> </td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("artist")%></FONT> </td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("company")%></FONT> </td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("price")%></FONT> </td>
</tr>
</ItemTemplate>
<SeparatorTemplate>
<tr>
<td colspan="6"><hr></td>
</tr>
</SeparatorTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
</form>
</html>