📄 admin_left.asp
字号:
<!--#include file="inc/Conn.asp" -->
<!--#include file="Admin_Menu.asp" -->
<!--#include file="Admin_IsLogin.asp" -->
<HTML><HEAD><TITLE></TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<STYLE type=text/css>
BODY {
gorush:expression(defaultStatus="管理系统--http://www.cnzzd.com");BACKGROUND: #799ae1; FONT: 9pt 宋体;SCROLLBAR-HIGHLIGHT-COLOR: #f0f0f0; SCROLLBAR-SHADOW-COLOR: #828282; SCROLLBAR-3DLIGHT-COLOR: #f0f0f0; SCROLLBAR-ARROW-COLOR: #333333; SCROLLBAR-TRACK-COLOR: #f0f0f0; SCROLLBAR-DARKSHADOW-COLOR: #f0f0f0 MARGIN: 0px
}
TABLE {
BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px
}
TD {
FONT: 12px 宋体
}
IMG {
BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: bottom
}
A {
COLOR: #000000; FONT: 12px 宋体; TEXT-DECORATION: none
}
A:hover {
COLOR: #428eff; TEXT-DECORATION: underline
}
.sec_menu {
BACKGROUND: #d6dff7; BORDER-BOTTOM: white 1px solid; BORDER-LEFT: white 1px solid; BORDER-RIGHT: white 1px solid; OVERFLOW: hidden
}
.menu_title {
}
.menu_title SPAN {
COLOR: #215dc6; FONT-WEIGHT: bold; LEFT: -4px; POSITION: relative; TOP: 0px}
.menu_title2 {
}
.menu_title2 SPAN {
COLOR: #428eff; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
}
</STYLE>
<SCRIPT language=JScript>
var mx,my,out=1,s=8,flag=0;
function msmove(){
mx=window.event.x;my=window.event.y;
cy=document.body.clientHeight;
if(my>=20&&my<=cy-20)out=1;
else{if(out==1){out=0;setTimeout('domove()',50);}}
}
function msout(){out=1;}
function domove(){
if (out==0){
cy=document.body.clientHeight;
if (my>0&&my<20)setTimeout('window.scrollBy(0,-'+s+')',0);
if (my>cy-20&&my<cy)setTimeout('window.scrollBy(0,'+s+')',0);
setTimeout('domove()',50);
}
}
</SCRIPT>
<script>
function document.onmousemove(){
if(event.srcElement.tagName=="A")window.status=''
}
</script>
<SCRIPT language=javascript1.2>
function showsubadmin_menu(sid)
{
whichEl = eval("subadmin_menu" + sid);
if (whichEl.style.display == "none")
{
eval("subadmin_menu" + sid + ".style.display=\"\";");
}
else
{
eval("subadmin_menu" + sid + ".style.display=\"none\";");
}
}
</SCRIPT>
<META content="MSHTML 5.00.3315.2870" name=GENERATOR></HEAD>
<BODY leftMargin=0 topMargin=0 marginwidth="0" marginheight="0" onmouseout=msout() onmouseover=msmove()>
<noscript><iframe></iframe></noscript>
<TABLE align=center cellPadding=0 cellSpacing=0 width=158>
<TBODY>
<TR>
<TD height=22 vAlign=bottom><IMG height=38
src="Images/title.gif" width=158> </TD>
</TR>
</TBODY>
</TABLE>
<TABLE align=center cellPadding=0 cellSpacing=0 width=158>
<TBODY>
<TR>
<TD background=Images/title_bg_quit.gif class=menu_title
height=25 onmouseout="this.className='menu_title';"
onmouseover="this.className='menu_title2';"> <A
href="Admin_First.asp"
target=content><B>管理首页</B></A> | <A
href="Admin_Exit.asp"
target=_top><B>退出</B></A> </TD>
</TR>
</TBODY>
</TABLE>
<TABLE align=center cellPadding=0 cellSpacing=0 width=158>
<TBODY>
<TR >
<TD> <DIV class=sec_menu style="WIDTH: 158px">
<TABLE align=center cellPadding=0 cellSpacing=5 width=135>
<TBODY>
<TR>
<TD height=16 valign="middle"> 用户名:<%response.write session("curUserName") %> <br>
登 陆:<font color="#FF0000">(<%response.write session("curLoginCount") %>)</font>次<br>
时 间:<%response.write session("curAddtime") %><BR></TD>
</TR>
</TBODY>
</TABLE>
</DIV></TD>
</TR>
</TBODY>
</TABLE>
<table width="158" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table>
<TABLE align=center cellPadding=0 cellSpacing=0 width=158>
<TBODY>
<%
dim j
dim tmpadmin_menu
dim admin_menuname
dim admin_menurl
for i=0 to ubound(admin_menu,1)
if isempty(admin_menu(i,0)) then exit for
%>
<TR >
<TD background=Images/admin_left_<%=i+1%>.gif height=25 style="cursor:hand" class=admin_menu_title id=admin_menuTitle1 onclick="showsubadmin_menu(<%=i%>)">
<strong><font color="#6699CC"> <%=admin_menu(i,0)%></font></strong>
</TD>
</TR>
<TR >
<TD id='subadmin_menu<%=i%>'> <DIV class=sec_menu style="WIDTH: 158px">
<table cellpadding=0 cellspacing=0 align=center width=135>
<%
for j=1 to ubound(admin_menu,2)
if isempty(admin_menu(i,j)) then exit for
Response.write "<tr>"
Response.write "<td height=20>·"&admin_menu(i,j)&"</td>"
Response.write " </tr>"
next
%>
</table>
</DIV>
<DIV style="WIDTH: 158px">
<TABLE align=center cellPadding=0 cellSpacing=0 width=135>
<TBODY>
<TR >
<TD height=15></TD>
</TR>
</TBODY>
</TABLE>
</DIV></TD>
</TR>
<%next%>
</TBODY>
</TABLE>
<table width="158" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table>
<table width="158" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="5"></td>
</tr>
</table>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -