-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWon.aspx
More file actions
36 lines (34 loc) · 1.26 KB
/
Copy pathWon.aspx
File metadata and controls
36 lines (34 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<%@ Page Title="" Language="C#" MasterPageFile="~/Dashboard.master" AutoEventWireup="true" CodeFile="Won.aspx.cs" Inherits="Default2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceHolder" runat="Server">
<div class="col-md-8 single-grid">
<div class="col-md-12">
<h2>Bids I Win</h2>
<table class="table table-responsive table-hover">
<thead>
<th>SL</th>
<th>Image</th>
<th>Title</th>
<th>Item Code</th>
<th>Price</th>
<th>Your Bid</th>
<th>Total Bids</th>
<th>Date</th>
</thead>
<tbody>
<asp:Label runat="server" ID="lblYourBidsContainer" />
</tbody>
<tfoot>
<th>SL</th>
<th>Image</th>
<th>Title</th>
<th>Item Code</th>
<th>Price</th>
<th>Your Bid</th>
<th>Total Bids</th>
<th>Date</th>
</tfoot>
</table>
</div>
<div class="clearfix"></div>
</div>
</asp:Content>