|
发表于 2020-8-19 06:30:02
|
显示全部楼层
<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">品牌</asp:Label></TD>
<TD width="36%">
<asp:Label id="Label6" runat="server">产品名称</asp:Label></TD>
<TD width="14%">
<asp:Label id="Label7" runat="server">价格</asp:Label></TD>
<TD width="13%">
<asp:Label id="Label8" runat="server">价格单位</asp:Label></TD>
<TD width="10%">
<asp:Label id="Label9" runat="server">人气</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> |
|