-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserdetails.aspx
38 lines (37 loc) · 4.33 KB
/
userdetails.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="userdetails.aspx.cs" Inherits="WebProject.userdetails" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <br />
Hello!
<asp:Label ID="mail" runat="server"></asp:Label>
<br />
<br />
<html><body style="background-color:lightcyan">
<div class="container">
<h1 class="text-center"> Your Order Details</h1>
<div class="row">
<div class="col-md-8 mx-auto">
<asp:GridView ID="CoursesGridView" CssClass="table" runat="server" AutoGenerateColumns="false" Width="100%" Height="250px">
<Columns>
<asp:BoundField DataField="fname" HeaderText="Flower Name" />
<asp:BoundField DataField="fprice" HeaderText="Price (tk)" />
<asp:BoundField DataField="mail" HeaderText="Mail Address" />
<asp:BoundField DataField="phone" HeaderText="Phone Number" />
<asp:BoundField DataField="location" HeaderText="Location" />
<asp:BoundField DataField="date" HeaderText="Delivery Date" />
<asp:BoundField DataField="payment" HeaderText="Payment Method" />
<asp:BoundField DataField="tid" HeaderText="Transaction ID" />
<asp:BoundField DataField="status" HeaderText="Status" />
</Columns>
</asp:GridView>
<br />
</div>
</div>
</div>
</body>
</html>
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="EXPLORE" BackColor="#00CC99" BorderColor="#00FFCC" BorderStyle="Inset" BorderWidth="5px" Height="40px" Width="180px" />
<br />
<br />
</asp:Content>