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

百货/超市行业

开发平台:

ASP/ASPX

  1. <%@ Control Language="c#" AutoEventWireup="false" Codebehind="CategoryList.ascx.cs" Inherits="eshop.CategoryList" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
  2. <table width="145" border="0" height="100%">
  3. <tr valign="top" height="100%">
  4. <td colspan="2" bgcolor="#f6e19e">
  5. <asp:DataList id="MyList" runat="server" cellpadding="3" cellspacing="0" width="145" 
  6. SelectedItemStyle-BackColor="dimgray" EnableViewState="false">
  7. <ItemTemplate>
  8. <asp:HyperLink cssclass="MenuUnselected" id="HyperLink1"
  9.  Text='<%# DataBinder.Eval(Container.DataItem, "CategoryName") %>' 
  10.  NavigateUrl='<%# "../Productlist.aspx?categoryID=" 
  11. + DataBinder.Eval(Container.DataItem, "categoryId") 
  12. + "&selection=" + Container.ItemIndex %>' runat="server" />
  13. </ItemTemplate>
  14. <SelectedItemTemplate>
  15. <asp:HyperLink cssclass="MenuSelected" id="HyperLink2" 
  16. Text='<%# DataBinder.Eval(Container.DataItem, "CategoryName") %>' 
  17. NavigateUrl='<%# "../productlist.aspx?categoryID=" 
  18.    + DataBinder.Eval(Container.DataItem, "categoryId") 
  19.    + "&selection=" + Container.ItemIndex %>' runat="server" />
  20. </SelectedItemTemplate>
  21. </asp:DataList>
  22. </td>
  23. </tr>
  24. </table>