CheckAdmin.asp
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <%
  2. Response.Charset="utf-8"
  3. '判断是否登录或登录超时===============================================================
  4. dim AdminAction
  5. AdminAction=request.QueryString("AdminAction")
  6. select case AdminAction
  7.   case "Out"
  8.     call OutLogin()
  9.   case else
  10.     call Login()
  11. end select
  12. '========
  13. sub Login()
  14.   if session("AdminName")="" or session("UserName")="" or session("AdminPurview")="" or session("LoginSystem")<>"Succeed" then
  15.      response.write "您还没有登录或登录已超时,请<a href='AdminLogin.asp' target='_parent'><font color='red'>返回登录</font></a>!"
  16.      response.end
  17.   end if
  18. end sub
  19. '========
  20. sub OutLogin()
  21.   session.contents.remove "AdminName"
  22.   session.contents.remove "UserName"
  23.   session.contents.remove "AdminPurview"
  24.   session.contents.remove "LoginSystem"
  25.   session.contents.remove "VerifyCode"
  26.   response.write "<script language=javascript>top.location.replace('AdminLogin.asp');</script>"
  27. end sub
  28. %>