-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomerDetails.aspx
20 lines (16 loc) · 1.19 KB
/
CustomerDetails.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<%@ Page Title="CustomerDetails" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeFile="CustomerDetails.aspx.cs" Inherits="CustomerDetails" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<h1>Car Availability information is shown below</h1>
<asp:GridView ID="CustomerDetailsList" runat="server" Width="600px" AutoGenerateColumns="False" >
<Columns>
<asp:BoundField HeaderStyle-Width="150px" DataField="Name" HeaderText="CustomerName" />
<asp:BoundField HeaderStyle-Width="150px" DataField="Phone" HeaderText="Phone" />
<asp:BoundField HeaderStyle-Width="150px" DataField="email" HeaderText="Email" />
<asp:BoundField HeaderStyle-Width="150px" DataField="PickUpDate" HeaderText="Picking date" />
<asp:BoundField HeaderStyle-Width="150px" DataField="DropDate" HeaderText="Dropping Date" />
<asp:BoundField HeaderStyle-Width="150px" DataField="CarModel" HeaderText="Model" />
<asp:BoundField HeaderStyle-Width="150px" DataField="NoOfDays" HeaderText="DaysofRent" />
<asp:BoundField HeaderStyle-Width="150px" DataField="Rent" HeaderText="Total Rent" />
</Columns>
</asp:GridView>
</asp:Content>