annotate Demo/Asp.Net/Web/Controls/NavigationControl.ascx @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author |
cin |
date |
Fri, 22 Aug 2014 17:34:46 +0400 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 <%@ Control Language="C#" AutoEventWireup="true" CodeFile="NavigationControl.ascx.cs" Inherits="PetShop.Web.NavigationControl" %>
|
|
2 <%@ OutputCache Duration="100000" VaryByParam="*" %>
|
|
3
|
|
4 <asp:Repeater ID="repCategories" runat="server">
|
|
5 <HeaderTemplate>
|
|
6 <table cellspacing="0" border="0" style="border-collapse: collapse;">
|
|
7 </HeaderTemplate>
|
|
8 <ItemTemplate>
|
|
9 <tr>
|
|
10 <td class="<%= ControlStyle %>"><asp:HyperLink runat="server" ID="lnkCategory" NavigateUrl='<%# string.Format("~/Products.aspx?page=0&categoryId={0}", Eval("Id")) %>' Text='<%# Eval("Name") %>' /><asp:HiddenField runat="server" ID="hidCategoryId" Value='<%# Eval("Id") %>' /></td>
|
|
11 </tr>
|
|
12 </ItemTemplate>
|
|
13 <FooterTemplate>
|
|
14 </table>
|
|
15 </FooterTemplate>
|
|
16 </asp:Repeater>
|