|
<asp:datalist id="DataList1" runat="server" Width="100%" Height="25px">
<HeaderTemplate>
<TABLE width="100%" border="0" cellSpacing="0" cellPadding="1">
<TR>
<TD width="27%">
<asp:Label id="Label5" runat="server">Brand</asp:Label></TD>
<TD width="36%">
<asp:Label id="Label6" runat="server">Product name</asp:Label></TD>
<TD width="14%">
<asp:Label id="Label7" runat="server">Price</asp:Label></TD>
<TD width="13%">
<asp:Label id="Label8" runat="server">Price unit</asp:Label></TD>
<TD width="10%">
<asp:Label id="Label9" runat="server">popularity</asp:Label></TD>
</TR>
</TABLE>
</HeaderTemplate>
<ItemTemplate>
<TABLE cellSpacing="0" cellPadding="1" width="100%" border="0">
<TR>
<TD width="27%">
<asp:Label id="Label10" runat="server"></asp:Label></TD>
<TD width="36%">
<asp:HyperLink id="HyperLink1" runat="server"></asp:HyperLink></TD>
<TD width="14%">
<asp:Label id="Label12" runat="server"></asp:Label></TD>
<TD width="13%">
<asp:Label id="Label13" runat="server"></asp:Label></TD>
<TD width="10%">
<asp:Label id="Label14" runat="server"></asp:Label></TD>
</TR>
</TABLE>
</ItemTemplate>
</asp:datalist> |
|