-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLogo.aspx
55 lines (51 loc) · 1.97 KB
/
Logo.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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Logo.aspx.cs" Inherits="Logo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<style type="text/css">
.style1
{
width: 100%;
}
</style>
</head>
<body style="margin-left:0px; margin-top:0px;
margin-right:0px; margin-bottom:0px">
<form id="form1" runat="server">
<div>
<table class="style1" style="background-image: url('Images/banner.png')">
<tr>
<td>
<asp:Label ID="lblDate" runat="server" Font-Size="13px" ForeColor="White"
Text="今天是:"></asp:Label>
</td>
<td align="right">
<asp:HyperLink ID="hyplinkLogout" runat="server" Font-Size="14px"
NavigateUrl="~/AdminLogin.aspx" Target="_top" Font-Bold="True"
Font-Underline="False" ForeColor="White">注销</asp:HyperLink>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblAdmin" runat="server" Font-Size="13px" ForeColor="White"
Text="当前管理员是:"></asp:Label>
</td>
<td>
<table class="style1">
<tr>
<td>
</td>
<td>
</td>
<td align="right">
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>