frame.asp

来自「该软件是用asp编写的」· ASP 代码 · 共 40 行

ASP
40
字号
<%@LANGUAGE="VBSCRIPT"%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers="1,2,3"
MM_authFailedURL="default.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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>长春家教网</title>
</head>
<frameset rows="80,*" cols="*" framespacing="2" frameborder="no" border="2" bordercolor="#000000">
  <frame src="yns_top.asp" name="topFrame" scrolling="no" noresize >
  <frameset rows="*" cols="141,*" framespacing="1" frameborder="no" border="1" bordercolor="#000000">
    <frame src="yns_left.asp" name="leftFrame" frameborder="yes" scrolling="yes" noresize >
    <frame src="yns_right.asp" name="mainFrame" frameborder="yes" scrolling="auto" noresize>
  </frameset>
</frameset>
<noframes>
<body>
对不起,本页面使用了框架!你的浏览器不支持!
</body>
</noframes>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?