-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomie.aspx
74 lines (68 loc) · 2.56 KB
/
Homie.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Homie.aspx.cs" Inherits="Homie" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.auto-style36 {
height: 70px;
}
.auto-style39 {
height: 607px;
font-family: "Ink Free";
text-align: center;
margin-top: -70px;
background-image: url('http://localhost:51020/image/slide-banner-2.jpg');
width: 1503px;
margin-left: -8px;
margin-left: -8px;
}
.auto-style40 {
height: 322px;
width: 838px;
margin-left: 186px;
margin-top: -30px;
background-color:black;
opacity:0.9;
position:absolute;
border:5px solid blueviolet;
left: 284px;
top: 214px;
}
.auto-style41 {
font-weight: bold;
}
</style>
</asp:Content>
<asp:Content ID="Content2" runat="server" contentplaceholderid="ContentPlaceHolder2">
<div class="auto-style39">
<div class="auto-style40">
<br />
<asp:Label ID="Label1" runat="server" Text="We will guide you to your special venue...for your most awaited occasions." ForeColor="White"></asp:Label>
<br />
<br />
<br />
<br />
<asp:Label ID="Label3" runat="server" ForeColor="White" Text="Area: "></asp:Label>
<strong>
<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True" BackColor="#CC99FF" CssClass="auto-style41">
<asp:ListItem>Kalyan</asp:ListItem>
<asp:ListItem>Dombivili</asp:ListItem>
<asp:ListItem>Thane</asp:ListItem>
<asp:ListItem>Ghatkopar</asp:ListItem>
</asp:DropDownList>
</strong>
<asp:Label ID="Label4" runat="server" ForeColor="White" Text="Occassion : "></asp:Label>
<strong>
<asp:DropDownList ID="DropDownList3" runat="server" BackColor="#CC99FF" CssClass="auto-style41">
<asp:ListItem>Wedding</asp:ListItem>
<asp:ListItem>Birthday</asp:ListItem>
<asp:ListItem>Institutional</asp:ListItem>
</asp:DropDownList>
</strong>
<br />
<br />
<strong>
<asp:Button ID="Button1" runat="server" BackColor="#CC99FF" BorderColor="#9900FF" BorderStyle="Double" CssClass="auto-style41" OnClick="Button1_Click" Text="Search Venue" Width="106px" />
</strong>
</div>
</div>
</asp:Content>