Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/Web/Controls/CartList.ascx @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
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> |