-
Notifications
You must be signed in to change notification settings - Fork 0
/
adddrivercabdetails.aspx
90 lines (81 loc) · 2.89 KB
/
adddrivercabdetails.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="adddrivercabdetails.aspx.cs" Inherits="Transportation.adddriverdetails" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
width: 218px;
}
.auto-style2 {
width: 128px;
background-color: #999966;
}
</style>
</head>
<body style="background-color:#808080">
<form id="form1" runat="server">
<div align="center">
<table>
<tr>
<td colspan="2">
<h1>
DRIVER DETAILS
</h1>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text="Driver Name"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtDname" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label4" runat="server" Text="DriverPhno"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtDpno" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label5" runat="server" Text="DriverEmail"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtDemail" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label7" runat="server" Text="CabModel"></asp:Label>
</td><td>
<asp:TextBox ID="txtCabmodel" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td> <asp:Label ID="Label8" runat="server" Text="Fare"></asp:Label>
</td>
<td><asp:TextBox ID="txtFare" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label9" runat="server" Text="Location"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtLocation" runat="server"></asp:TextBox>
</td>
</tr><br>
<tr><td><asp:Button ID="Button2" runat="server" Text="Submit" OnClick="Button2_Click" Height="30px" Width="78px" /></td>
<td>
<asp:LinkButton ID="lnklogout" runat="server" Text="LogOut" OnClick="lnklogout_Click" style="z-index: 1; left: 843px; top: 232px; position: " Font-Size="X-Large" ForeColor="Black"></asp:LinkButton>
</td>
</tr>
</table>
</div><br /><br /><br />
</form>
</body>
</html>