diff Demo/Asp.Net/Web/Controls/ProductsControl.ascx @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Demo/Asp.Net/Web/Controls/ProductsControl.ascx	Thu Mar 27 21:46:09 2014 +0400
@@ -0,0 +1,18 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ProductsControl.ascx.cs" Inherits="PetShop.Web.ProductsControl" EnableViewState="false" %>
+<%@ Register TagPrefix="PetShopControl" Namespace="PetShop.Web" %>
+<%@ OutputCache Duration="100000" VaryByParam="page;categoryId" %>
+
+<div align="center" class="productsPosition">
+<PetShopControl:CustomList ID="productsList" runat="server" EmptyText="No products found." OnPageIndexChanged="PageChanged" PageSize="4" RepeatColumns="2" CellPadding="16" CellSpacing="0" Width="500px">        
+<ItemTemplate>
+<table cellpadding="0" cellspacing="0">
+<tr>
+	<td valign="top" width="91"><a href='Items.aspx?productId=<%# Eval("Id") %>&categoryId=<%# Eval("categoryId") %>'><img id="imgProduct" alt='<%# Eval("Name") %>' src='<%# Eval("Image") %>' style="border-width: 0px;" runat="server" /></a></td>
+	<td width="26">&nbsp;</td>
+	<td valign="top" width="120"><a href='Items.aspx?productId=<%# Eval("Id") %>&categoryId=<%# Eval("categoryId") %>'><div class="productName"><%# Eval("Name") %></div></a><div class="productDescription"><%# Eval("Description") %></div></td>
+</tr>
+</table>
+</ItemTemplate>
+<ItemStyle HorizontalAlign="Left" VerticalAlign="Top" />
+</PetShopControl:CustomList>
+ </div>
\ No newline at end of file