PopularProduct.ascx
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

ASP/ASPX

  1. <%@ Control Language="c#" AutoEventWireup="false" Codebehind="PopularProduct.ascx.cs" Inherits="eshop.UserControl.PopularProduct" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
  2. <table width="95%" cellpadding="0" cellspacing="0" border="0">
  3. <asp:Repeater ID="PopularList" runat="server">
  4. <HeaderTemplate>
  5. <tr>
  6. <td class="MostPopularHead">热门商品
  7. </td>
  8. </tr>
  9. </HeaderTemplate>
  10. <ItemTemplate>
  11. <tr>
  12. <td bgcolor="#d3d3d3">
  13. <asp:HyperLink class="MostPopularItemText" NavigateUrl='<%# "../ProductInfo.aspx?ProductId=" + DataBinder.Eval(Container.DataItem, "ProductID")%>' Text='<%#DataBinder.Eval(Container.DataItem, "ProductName")%>' runat="server" ID="Hyperlink1"/>
  14. <br>
  15. </td>
  16. </tr>
  17. </ItemTemplate>
  18. </asp:Repeater>
  19. </table>