-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProducts.aspx
25 lines (23 loc) · 1.35 KB
/
Products.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ Page Title="" Language="C#" MasterPageFile="~/User.master" AutoEventWireup="true" CodeFile="Products.aspx.cs" Inherits="Products" %>
<asp:content id="Content1" contentplaceholderid="head" runat="Server">
</asp:content>
<asp:content id="Content2" contentplaceholderid="ContentPlaceHolder1" runat="Server">
<div class="row" style="padding-top: 50px">
<asp:Repeater ID="rptrProducts" runat="server">
<ItemTemplate>
<div class="col-sm-3 col-md-3">
<a style="text-decoration:none;" href="ProductView.aspx?PID=<%#Eval("PID") %>">
<div class="thumbnail">
<img src="Images/ProductImages/<%#Eval("PID") %>/<%#Eval("ImageName") %><%#Eval("Extention") %>" alt="<%#Eval("ImageName") %>">
<div class="caption">
<div class="probrand"><%#Eval("BrandName") %></div>
<div class="proName"><%#Eval("PName") %></div>
<div class="proPrice"><span class="proOgPrice"><%#Eval("PPrice") %></span> <%#Eval("PSelPrice") %> <span class="proPriceDiscount">(<%#Eval("DiscAmount") %> Off)</span></div>
</div>
</div>
</a>
</div>
</ItemTemplate>
</asp:Repeater>
</div>
</asp:content>