-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogout.aspx
93 lines (70 loc) · 2.82 KB
/
Logout.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
<%@ Page Title="" Language="VB" MasterPageFile="~/Site.master" AutoEventWireup="false" CodeFile="Logout.aspx.vb" Inherits="gallary" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="body" Runat="Server">
<form id="form1" runat="server">
<style>
.sub_div
{
width:150px; height:100px; margin-left:-7%; position:absolute;
display:none;
}
.sub_div ul li
{
list-style-type:none
}
.car_di:hover .sub_div
{
display:block
}
</style>
<!-- Header -->
<header id="header" class="skel-layers-fixed">
<h1><a href="start.aspx">CAR RENTALS </a></h1>
<nav id="nav">
<ul>
<li><a href="aboutus.aspx">ABOUT US</a></li>
<%
If (Session("u_id") <> "") Then
%>
<li><a href="uaccount.aspx">ACCOUNT</a></li>
<%
End If
%>
<li class="car_di"><a href="car.aspx">CARS</a>
<div class ="sub_div">
<ul class="">
<li style="background-color:white; width:100px;"><a href="ceconomy.aspx">Economy</a></li>
<li style="background-color:white; width:100px;"><a href="cstandard.aspx">Standard</a></li>
<li style="background-color:white; width:100px;"><a href="cluxury.aspx">Luxury</a></li>
</ul>
</div>
</li>
<li><a href="ContactUs.aspx">CONTACT US</a></li>
<%
If (Session("u_id") <> "") Then
%>
<li><a href="Logout.aspx" class="button special">Log Out</a></li>
<%
Else
%>
<li><a href="Login.aspx" class="button special">Log In</a></li>
<%
End If
%>
</ul>
</nav>
</header>
<footer id="footer">
<center>
<div class="6u">
<ul class="copyright">
<li><strong>© Car Rentals. All rights reserved.</strong></li>
<li><strong>Design By: Shubham Ravani.</strong></li>
<%-- <li>Images: <a href="http://unsplash.com">Google/Suport</a></li>--%>
</ul>
</div>
</center>
</footer>
</form>
</asp:Content>