A sample:
<asp:DataList id="DataList1" runat="server"
        BorderColor="black"
        BorderWidth="1"
        GridLines="Both"
        CellPadding="3"
        CellSpacing="0"
        >
     <ItemTemplate>
<table align="center" width="680">
<tr><td colspan=3><hr color= #006633 style="BORDER-RIGHT: 1px solid; BORDER-TOP: 1px solid; BORDER-LEFT: 1px solid; BORDER-BOTTOM: 1px solid"></td></tr>
<tr>
<td><font color="#000099">电路代号:</font>
<%# DataBinder.Eval(Container.DataItem,"circuitId") %>
</td>
<td><font color="#000099">电路名称:</font>
<%# DataBinder.Eval(Container.DataItem, "circuitName") %>
</td>
<td><font color="#000099">业务类型:</font>
<%# DataBinder.Eval(Container.DataItem, "businessName") %>
</td>
</tr>
      </table>
   </ItemTemplate>
</asp:repeater>