-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKIA.aspx
97 lines (90 loc) · 5.99 KB
/
KIA.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
91
92
93
94
95
96
97
<%@ Page Title="Models" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeFile="KIA.aspx.cs" Inherits="KIA" %>
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<div>
<asp:ImageButton ID="ImageButton3" runat="server" ImageUrl="~/images/images.jpeg" />
<table style="width: 391px; height: 370px; text-align: left;">
<tr>
<td align="left" valign="top" style="width: 153px">
<img src=
"images/hondaaccord.jpg" style="width: 303px; height: 203px" /> <asp:Label ID="Label1" runat="server" Font-Bold="True" Text="Honda Accord"></asp:Label><br />
<br />
<ul>
<li>5 Seater </li>
<li>Petrol Engine</li>
<li>Economical (30m/g)</li>
</ul>
<asp:TextBox ID="TextBox1" runat="server" Font-Bold="True" Font-Size="14pt"
Width="64px" OnTextChanged="TextBox1_TextChanged">$40</asp:TextBox>
</td>
<td style="width: 135px" align="top" valign="top">
<img src=
"images/civic.jpg" style="width: 303px; height: 203px" />
<asp:Label ID="Label2" runat="server" Font-Bold="True" Text="Honda Civic"></asp:Label><br />
<br />
<ul>
<li>5 Seater</li>
<li>Petrol/Diesel Engine</li>
<li>Economical (30m/g)</li>
</ul>
<p>
<asp:TextBox ID="TextBox2" runat="server" Font-Bold="True" Font-Size="14pt" Width="74px">$45</asp:TextBox>
</p>
<p>
</p>
</td>
</tr>
<tr>
<td style="width: 153px; height: 426px;" valign="top">
<img src="images/civicred.jpg" style="width: 303px; height: 203px" />
<asp:Label ID="Label3" runat="server" Font-Bold="True" Font-Size="14pt" Text="Honda Civic" style="background-image: url(images/civic.jpg); background-repeat: no-repeat"></asp:Label><br />
<br />
<ul>
<li>4 Seater</li>
<li>Petrol/LPG Engine</li>
<li>Economical (25m/g)</li>
</ul>
<p>
<asp:TextBox ID="TextBox3" runat="server" Font-Bold="True" Font-Size="14pt" Width="63px">$30</asp:TextBox> </p>
</td>
<td style="width: 135px; height: 426px;" valign="top">
<img src="images/crv.jpg" style="width: 303px; height: 203px" /> <br />
<asp:Label ID="Label4" runat="server" Font-Bold="True" Font-Size="14pt" Text="CRV"></asp:Label><br />
<br />
<ul>
<li>5 Seater</li>
<li>Petrol Engine</li>
<li>Economical (28m/g)</li>
</ul>
<p>
<asp:TextBox ID="TextBox4" runat="server" Font-Bold="True" Font-Size="14pt" Width="61px">$50</asp:TextBox>
</p>
</td>
</tr>
</table>
</div>
<asp:ImageButton ID="ImageButton1" runat="server" OnClick="ImageButton1_Click" Height="37px" ImageUrl="~/images/Aiga_leftarrow_inv.gif" Width="55px" />
<asp:ImageButton ID="ImageButton2" runat="server" OnClick="ImageButton2_Click" Height="37px" ImageUrl="~/images/Aiga_rightarrow_inv.gif" Width="55px" />
<asp:LinkButton ID="LinkButton5" runat="server" Font-Bold="True" Font-Size="12pt"
OnClick="LinkButton5_Click" Style="color: black">PROCEED TO BOOK</asp:LinkButton>
</div>
</asp:content>