LockUser.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:2k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_Inc/Function.asp"-->
  4. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  5. <!--#include file="../../FS_Inc/Func_Page.asp" -->
  6. <%'CopyRight (c) 2006 Fooun Inc. Code by Simpwind.Xie
  7. Dim Conn,User_Conn,strShowErr,GetUser,str_tmp
  8. MF_Default_Conn
  9. MF_User_Conn
  10. 'session判断
  11. MF_Session_TF 
  12. set GetUser= Server.CreateObject(G_FS_RS)
  13. GetUser.open "select UserNumber,isLock From FS_ME_Users where UserNumber='"&NoSqlHack(Request.QueryString("UserNumber"))&"'",User_Conn,1,3
  14. if GetUser.eof then
  15. GetUser.close:set GetUser=nothing
  16. set conn=nothing
  17. set user_conn=nothing
  18. Response.Write("<script>alert(""找不到此用户"");window.close();</script>")
  19. Response.End
  20. else
  21. if NoSqlHack(Request.QueryString("action"))="Lock" then
  22. GetUser("isLock")=1
  23. str_tmp="锁定"
  24. Call MF_Insert_oper_Log("解锁用户","用户编号:("& NoSqlHack(Request.QueryString("UserNumber"))&")",now,session("admin_name"),"ME")
  25. elseif NoSqlHack(Request.QueryString("action"))="UnLock" then
  26. GetUser("isLock")=0
  27. str_tmp="解锁"
  28. Call MF_Insert_oper_Log("锁定用户","用户编号:("& NoSqlHack(Request.QueryString("UserNumber"))&")",now,session("admin_name"),"ME")
  29. end if
  30. GetUser.update
  31. GetUser.close:set GetUser=nothing
  32. set conn=nothing
  33. set user_conn=nothing
  34. Response.Write("<script>alert(""用户["&str_tmp&"]操作成功"");window.close();</script>")
  35. Response.End
  36. end if
  37. %>
  38. <!--Powsered by Foosun Inc.,Product:FoosunCMS V4.0系列-->