📄 index1.asp
字号:
<%@LANGUAGE="VBSCRIPT"%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers="1,2,0"
MM_authFailedURL="index.asp"
MM_grantAccess=false
If Session("MM_Username") <> "" Then
If (false Or CStr(Session("MM_UserAuthorization"))="") Or _
(InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
MM_grantAccess = true
End If
End If
If Not MM_grantAccess Then
MM_qsChar = "?"
If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
MM_referrer = Request.ServerVariables("URL")
if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
Response.Redirect(MM_authFailedURL)
End If
%>
<html>
<head>
<title>轻燕工作室中学人事管理系统-首页</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
<table width="777" border="0" cellspacing="0" cellpadding="0" height="100%" align="center">
<tr>
<td align="center" valign="top" bgcolor="FF8144"><img src="admin/index1.jpg" width="777" height="456" align="middle" usemap="#Map" border="0">
<map name="Map">
<area shape="rect" coords="274,205,412,231" href="search.asp" target="_self">
<area shape="rect" coords="275,241,491,272" href="view.asp" target="_self">
<area shape="rect" coords="276,277,413,305" href="add.asp" target="_self">
<area shape="rect" coords="277,311,409,340" href="admin/admuserlogin.asp" target="_self">
<area shape="rect" coords="276,346,390,373" href="index.asp" target="_self">
<area shape="rect" coords="277,376,389,410" href="admin/loginout.asp" target="_self">
<area shape="rect" coords="694,11,758,35" href="help.htm" target="_blank">
</map>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -