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

📄 chkadmin.asp

📁 欢迎使用《雨点下载系统 2.0》! 本系统仅提供给个人网站免费使用
💻 ASP
字号:
<%dim chkadmin
chkadmin=true
if session("adm_usr")="" or session("adm_pwd")="" then
	chkadmin=false
%>
<script language=vbscript>
  MsgBox "链接超时,请重新登录!"
  location.href = "login.asp"
</script>
<%
else
	dim rsu,sqlu,power
	sqlu="select top 1 Power,LockUser from UserInfo where IsAdmin=True and USR='"&session("adm_usr")&"' and PWD='"&session("adm_pwd")&"'"
	set rsu=conn.execute(sqlu)
	if rsu.eof and rsu.bof then
		chkadmin=false
%>
<script language=vbscript>
  MsgBox "请不要非法进入!"
  location.href = "login.asp"
</script>
<%	
	elseif rsu(1)=True then
		chkadmin=false
%>
<script language=vbscript>
  MsgBox "此用户已被锁定,请与管理员联系!"
  location.href = "login.asp"
</script>
<%
	else
		power=split(rsu(0),",")
	end if
	set rsu=nothing
end if
%>

⌨️ 快捷键说明

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