-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogOut.aspx
More file actions
39 lines (36 loc) · 1.05 KB
/
LogOut.aspx
File metadata and controls
39 lines (36 loc) · 1.05 KB
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
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="LogOut.aspx.cs" Inherits="LogOut" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<style type="text/css">
.style2
{
height: 19px;
}
</style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<br />
<br />
<br />
<center>
<asp:Panel ID="pnlLogin" runat ="server" Width ="300px" BorderStyle="Groove"
Height="139px" >
<table style="background-color: #ffcc66; width: 299px; height: 137px;">
<tr>
<td>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblLogOut" runat="server" style="color: #FF00FF; font-size:large; font-weight: 700"></asp:Label>
</td>
</tr>
<tr>
<td class="style2">
<asp:LinkButton ID="lnkLogOut" runat="server" Text="Do U Want Login Again"
ForeColor="Blue" onclick="lnkLogOut_Click"></asp:LinkButton>
</td>
</tr>
</table>
</asp:Panel>
</center>
</asp:Content>