⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checklogin.asp

📁 工资管理系统功能齐全包括工人工资信息查询.
💻 ASP
字号:
<%
	MM_authorizedUsers=""
	MM_authFailedURL="Login.asp"
	MM_grantAccess=false
	If Session("MM_UserName") <> "" Then
	  If (true 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
%>

⌨️ 快捷键说明

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