Mercurial > pub > bltoolkit
annotate Demo/Asp.Net/Web/Controls/CartList.ascx @ 2:79a04c6442bf
file name case fix
| author | cin |
|---|---|
| date | Fri, 22 Aug 2014 13:41:57 +0400 |
| 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> |
