Mini Kabibi Habibi
<%@ Control Language="C#" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e) {
dvProducts.DataSource = Utils.GenerateProductDemos(false);
dvProducts.DataBind();
dvLargeProducts.DataSource = Utils.GenerateProductDemos(true);
dvLargeProducts.DataBind();
}
</script>
<dx:ASPxDataView runat="server" ID="dvLargeProducts" CssClass="ProductsView Large" ItemSpacing="86px"
EnableTheming="false" EnableDefaultAppearance="false" AllowPaging="False">
<itemtemplate>
<h3>
<a href="<%# ResolveClientUrl((string)Eval("NavigateUrl")) %>"><%# Eval("Title") %></a>
</h3>
<div class="SmallScreenshotShadow">
<a href="<%# ResolveClientUrl((string)Eval("NavigateUrl")) %>">
<img src="<%# ResolveClientUrl((string)Eval("ImageUrl")) %>" alt="<%# Eval("Title") %>" /></a>
</div>
<a href="<%# ResolveClientUrl((string)Eval("NavigateUrl")) %>"><%# Eval("Description") %></a>
</itemtemplate>
<itemstyle cssclass="Product" />
</dx:ASPxDataView>
<dx:ASPxDataView runat="server" ID="dvProducts" CssClass="ProductsView" ItemSpacing="50px"
EnableTheming="false" EnableDefaultAppearance="false" AllowPaging="False" SettingsTableLayout-ColumnCount="4" Width="910px">
<itemtemplate>
<div class="ProductWrapper">
<div class="HeaderWrapper">
<h3>
<a href="<%# ResolveClientUrl((string)Eval("NavigateUrl")) %>"><%# Eval("Title") %></a>
</h3>
</div>
<div class="SmallScreenshotShadow">
<a href="<%# ResolveClientUrl((string)Eval("NavigateUrl")) %>">
<img src="<%# ResolveClientUrl((string)Eval("ImageUrl")) %>" alt="<%# Eval("Title") %>" /></a>
</div>
<a href="<%# ResolveClientUrl((string)Eval("NavigateUrl")) %>"><%# Eval("Description") %></a>
</div>
</itemtemplate>
<itemstyle cssclass="Product" HorizontalAlign="Center" />
</dx:ASPxDataView>