-
Notifications
You must be signed in to change notification settings - Fork 1
/
exchange2.aspx
58 lines (56 loc) · 2.6 KB
/
exchange2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<%@ Page Title="" Language="C#" MasterPageFile="~/mainmenu.master" AutoEventWireup="true" CodeFile="exchange2.aspx.cs" Inherits="exchange2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style1
{
width: 327px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table>
<tbody>
<tr>
<td style="width:400px">
Ticket for first user:<br />
<br />
Ticket Number:
<asp:Label ID="ticketNo" runat="server" Text="Ticket Number:"></asp:Label>
<br __designer:mapid="b0" />Username:
<asp:Label ID="userName" runat="server" Text="Username:"></asp:Label>
<br __designer:mapid="b2" />Flight Number:
<asp:Label ID="flightNo" runat="server" Text="Flight Number:"></asp:Label>
<br __designer:mapid="b4" />Origin:
<asp:Label ID="ori" runat="server" Text="origin:"></asp:Label>
<br __designer:mapid="b6" />Destination:
<asp:Label ID="dst" runat="server" Text="Destination:"></asp:Label>
<br __designer:mapid="b8" />Departure Date and Time:
<asp:Label ID="deptdt" runat="server" Text="Departure DateTime:"></asp:Label>
<br __designer:mapid="ba" />Arrival Date and Time:
<asp:Label ID="arrivdt" runat="server" Text="arrival datetime"></asp:Label>
</td>
<td style="width:400px">
Ticket for second user:<br />
<br />
Ticket Number:
<asp:Label ID="ticketNo0" runat="server" Text="Ticket Number:"></asp:Label>
<br __designer:mapid="b0" />Username:
<asp:Label ID="userName0" runat="server" Text="Username:"></asp:Label>
<br __designer:mapid="b2" />Flight Number:
<asp:Label ID="flightNo0" runat="server" Text="Flight Number:"></asp:Label>
<br __designer:mapid="b4" />Origin:
<asp:Label ID="ori0" runat="server" Text="origin:"></asp:Label>
<br __designer:mapid="b6" />Destination:
<asp:Label ID="dst0" runat="server" Text="Destination:"></asp:Label>
<br __designer:mapid="b8" />Departure Date and Time:
<asp:Label ID="deptdt0" runat="server" Text="Departure DateTime:"></asp:Label>
<br __designer:mapid="ba" />Arrival Date and Time:
<asp:Label ID="arrivdt0" runat="server" Text="arrival datetime"></asp:Label>
</td>
</tr>
</tbody>
</table>
<asp:Button ID="exchangeBtn" runat="server" Text="Exchange Flight"
onclick="exchangeBtn_Click" />
<asp:Literal ID="Literal1" runat="server" EnableViewState="False"></asp:Literal>
</asp:Content>