<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> </td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("contactname")%></FONT> </td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("address")%></FONT> </td>
<td><FONT COLOR=#ff0000><%#Container.DataItem("city")%></FONT> </td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
</form>
</body>