📄 left.asp
字号:
<!--#include virtual="/include/check.asp"-->
<% CheckAdminIsLogin("信息管理") %>
<!--#include virtual="/include/conn.asp"-->
<html>
<head>
<title>后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type=text/css>
<!--
BODY{
margin:0px;
FONT-SIZE: 12px;
FONT-FAMILY: "宋体", "Verdana", "Arial", "Helvetica", "sans-serif";
background-color: #BEBFD9;
scrollbar-face-color: #EAEAF2;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #9395C0;
scrollbar-3dlight-color: #F3F3F8;
scrollbar-arrow-color: #9395C0;
scrollbar-track-color: #F3F3F8;
scrollbar-darkshadow-color: #F3F3F8;
}
table { border:0px; }
td { font:normal 12px 宋体; }
img { vertical-align:bottom; border:0px; }
a { font:normal 12px 宋体; color:#111111; text-decoration:none; }
a:hover { color:#6C70AA;text-decoration:underline; }
.sec_menu { border-left:1px solid white; border-right:1px solid white; border-bottom:1px solid white; overflow:hidden; background:#FBFBFC; }
.menu_title { }
.menu_title span { position:relative; top:2px; left:8px; color:#4A4F80; font-weight:bold; }
.menu_title2 { }
.menu_title2 span { position:relative; top:2px; left:8px; color:#596099; font-weight:bold; }
input,select,Textarea{
font-family:宋体,Verdana, Arial, Helvetica, sans-serif; font-size: 12px;}
}
-->
</style>
<SCRIPT language=javascript1.2>
function showsubmenu(sid)
{
whichEl = eval("submenu" + sid);
if (whichEl.style.display == "none")
{
eval("submenu" + sid + ".style.display=\"\";");
}
else
{
eval("submenu" + sid + ".style.display=\"none\";");
}
}
</SCRIPT>
<base target="i2">
</head>
<%
REM 管理栏目设置
dim menu(6,10)
menu(0,0)="基本信息"
menu(0,1)="<a href=baseinfo.asp target=right>基本信息</a>"
menu(1,0)="导航管理"
menu(1,1)="<a href=anclass.asp target=right>一级菜单</a>"
menu(1,2)="<a href=nclass.asp target=right>二级菜单</a>"
menu(1,3)="<a href=bodyclassl.asp target=right>左栏增删</a>"
menu(1,4)="<a href=bodyclassr.asp target=right>右栏增删</a>"
menu(1,5)="<a href=bodyclassl2.asp target=right>左栏设定</a>"
menu(1,6)="<a href=bodyclassr2.asp target=right>右栏设定</a>"
menu(2,0)="添加信息"
menu(2,1)="<a href=product/AddNews.asp target=right>添加信息</a>"
menu(3,0)="管理信息"
menu(3,1)="<a href=product/ManageNews.asp target=right>管理信息</a>"
menu(4,0)="上传文件"
menu(4,1)="<a href=UploadFile/AddFile.asp target=right>上传文件</a>"
menu(4,2)="<a href=UploadFile/FileList.asp target=right>管理文件</a>"
menu(5,0)="用户管理"
menu(5,1)="<a href=user/UserAdd.asp target=right>添加用户</a>"
menu(5,2)="<a href=user/UserList.asp target=right>管理用户</a>"
menu(6,0)="密码修改"
menu(6,1)="<a href=user/modify.asp target=right>修改帐号密码</a>"
%>
<BODY leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">
<table width=100% cellpadding=0 cellspacing=0 border=0 align=left>
<tr>
<td valign=top> <table cellpadding=0 cellspacing=0 width=158 align=center>
<tr>
<td height=42 valign=bottom> <img src="images/admin_title.gif" width=158 height=38>
</td>
</tr>
</table>
<table cellpadding=0 cellspacing=0 width=158 align=center>
<tr>
<td height=25 class=menu_title onmouseover=this.className='menu_title2'; onmouseout=this.className='menu_title'; background=images/title_bg_quit.gif >
<span><a href="right.asp" target=right><b>管理首页</b></a> | <a href="/include/LoginOut.asp" target=_top><b>退出</b></a></span>
</td>
</tr>
<tr>
<td style="display:"> <div class=sec_menu style="width:158">
<table cellpadding=0 cellspacing=0 align=center width=158>
<tr>
<td height=20>用户名:<font color=red><%=Request.Cookies("AdminName")%></font></td>
</tr>
<tr>
<td height=20>身 份:<font color=red>管理员</font></td>
</tr></table></div></td>
</table>
<div style="width:158">
<table cellpadding=0 cellspacing=0 align=center width=158>
<tr>
<td height=10></td>
</tr>
</table>
</div>
<%
dim j,i
dim tmpmenu
dim menuname
dim menurl
for i=0 to ubound(menu,1)
%>
<table cellpadding=0 cellspacing=0 width=158 align=center>
<tr>
<td height=25 class=menu_title onmouseover=this.className='menu_title2'; onmouseout=this.className='menu_title'; background="images/title_bg_show.gif" id=menuTitle1 onclick="showsubmenu(<%=i%>)">
<span><%=menu(i,0)%></span> </td>
</tr>
<tr>
<td <%if i=33 then%> style="display:" <%else%> style="display:none" <%end if%> id='submenu<%=i%>'>
<div class=sec_menu style="width:158">
<table cellpadding=0 cellspacing=0 align=center width=158>
<%
for j=1 to ubound(menu,2)
if isempty(menu(i,j)) then exit for
%>
<tr><td height=20><img src=images/bullet.gif border=0><%=menu(i,j)%></td></tr>
<%
next
%>
</table>
</div>
<div style="width:158">
<table cellpadding=0 cellspacing=0 align=center width=158>
<tr><td height=10></td></tr>
</table>
</div>
</td>
</tr>
</table>
<%next%>
<table cellpadding=0 cellspacing=0 width=158 align=center>
<tr>
<td height=25 class=menu_title onmouseover=this.className='menu_title2'; onmouseout=this.className='menu_title'; background="images/admin_left_2.gif" id=menuTitle1>
<span>系统信息</span> </td>
</tr>
<tr>
<td> <div class=sec_menu style="width:158">
<table cellpadding=0 cellspacing=0 align=center width=158>
<tr>
<td height=20><br>
网站名称:<a href="/">仙游私立一中</a><BR>
网站设计:陈步添
<BR>
<BR></td>
</tr>
</table>
</div></td>
</tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -