Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/Web/Controls/CartList.ascx @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
rev | line source |
---|---|
0 | 1 <%@ Control Language="C#" AutoEventWireup="true" CodeFile="CartList.ascx.cs" Inherits="PetShop.Web.CartList" %> |
2 <asp:Repeater ID="repOrdered" runat="server"> | |
3 <HeaderTemplate><table cellspacing="0" cellpadding="0" border="0" style="width:100%;border-collapse:collapse;"> | |
4 <tr align="left"> | |
5 <th scope="col">Name</th><th scope="col">Qty</th> | |
6 </tr></HeaderTemplate> | |
7 <ItemTemplate><tr valign="top"> | |
8 <td><%# Eval("Name") + " " + Eval("Type")%></td> | |
9 <td><%# Eval("Quantity") %></td> | |
10 </tr></ItemTemplate> | |
11 <FooterTemplate></table></FooterTemplate> | |
12 </asp:Repeater> |