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

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../FS_Inc/Const.asp" -->
  3. <!--#include file="../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../FS_Inc/Function.asp" -->
  5. <!--#include file="../FS_Inc/Cls_Cache.asp" -->
  6. <!--#include file="../FS_Inc/Func_page.asp" -->
  7. <%
  8. Dim Conn,strShowErr
  9. MF_Default_Conn
  10. MF_Session_TF
  11. if not MF_Check_Pop_TF("MF_Pop") then Err_Show
  12. Dim int_RPP,int_Start,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo
  13. int_RPP=20 '设置每页显示数目
  14. int_showNumberLink_=8 '数字导航显示数目
  15. showMorePageGo_Type_ = 1 '是下拉菜单还是输入值跳转,当多次调用时只能选1
  16. str_nonLinkColor_="#999999" '非热链接颜色
  17. toF_="<font face=webdings title=""首页"">9</font>"   '首页 
  18. toP10_=" <font face=webdings title=""上十页"">7</font>" '上十
  19. toP1_=" <font face=webdings title=""上一页"">3</font>" '上一
  20. toN1_=" <font face=webdings title=""下一页"">4</font>" '下一
  21. toN10_=" <font face=webdings title=""下十页"">8</font>" '下十
  22. toL_="<font face=webdings title=""最后一页"">:</font>"
  23. %>
  24. <html xmlns="http://www.w3.org/1999/xhtml">
  25. <HEAD>
  26. <TITLE>FoosunCMS</TITLE>
  27. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  28. </HEAD>
  29. <script language="JavaScript" src="../FS_Inc/PublicJS.js" type="text/JavaScript"></script>
  30. <link href="images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  31. <BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 scroll=yes>
  32. <%
  33. Dim obj_admin_get_rs
  34. set obj_admin_get_rs= Conn.execute("select ID,Admin_Name,Admin_Parent_Admin,Admin_Is_Super,Admin_Real_Name,Admin_Is_Locked From FS_MF_Admin where ID="&NoSqlHack(Request.QueryString("Id")))
  35. Dim obj_admin_Rs,strpage,select_count,select_pagecount,i,Tmp_adminname,Tmp_super,Tmp_Lock,tmp_my,SQL
  36. strpage=request("page")
  37. if len(strpage)=0 Or strpage<1 or trim(strpage)=""Then:strpage="1":end if
  38. Set obj_admin_Rs = server.CreateObject(G_FS_RS)
  39. SQL = "Select ID,Admin_Name,Admin_Parent_Admin,Admin_Is_Super,Admin_Real_Name,Admin_Is_Locked  from FS_MF_Admin where Admin_Name<>'"& obj_admin_get_rs("Admin_Name")&"' and  Admin_Parent_Admin<>'"& obj_admin_get_rs("Admin_Name")&"' Order by id desc"
  40. obj_admin_Rs.Open SQL,Conn,1,3
  41. %>
  42.   <form name="form1" method="post" action="">
  43.   <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
  44.   <tr class="xingmu">
  45.     <td class="xingmu">管理员管理</td>
  46.   </tr>
  47.   <tr class="hback">
  48.     <td><a href="SysAdmin_List.asp">管理员首页</a> | <a href="SysAdmin_List.asp?Is_Super=1">超级管理员</a> 
  49.       | <a href="SysAdmin_List.asp?islock=1">锁定的管理员</a> | <a href="SysAdmin_List.asp?islock=0">开放的管理员</a> 
  50.       | <a href="SysAdmin_List.asp?my=1">我的管理员</a></td>
  51.   </tr>
  52. </table>
  53. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
  54.     <tr class="hback"> 
  55.       <td width="32%" height="25" class="xingmu"> <div align="left">指定删除此管理员<span class="tx">(<% = obj_admin_get_rs("Admin_Name")%>
  56.           )</span>后的下级管理员所属的管理员,必须选择一项 </div></td>
  57.     </tr>
  58.     <tr class="hback"> 
  59.       <td height="25"><input type="radio" name="Parent_Admin_Name" value="0">
  60.         设置此管理员将不属于任何管理员</td>
  61.     </tr>
  62.     <%
  63. Response.Write"<tr class=""hback""><td class=""hback""><table width=""100%"" border=""0"" align=""center"" cellpadding=""3"" cellspacing=""1"">"
  64. if obj_admin_Rs.eof then
  65.    obj_admin_Rs.close
  66.    set obj_admin_Rs=nothing
  67.    Response.Write"<table width=""98%"" class=""table"" align=""center""><tr  class=""hback""><td  class=""hback"" height=""40"">没有符合条件的管理员。</td></tr></table>"
  68. else
  69. obj_admin_Rs.PageSize=int_RPP
  70. cPageNo=NoSqlHack(Request.QueryString("Page"))
  71. If cPageNo="" Then cPageNo = 1
  72. If not isnumeric(cPageNo) Then cPageNo = 1
  73. cPageNo = Clng(cPageNo)
  74. If cPageNo<=0 Then cPageNo=1
  75. If cPageNo>obj_admin_Rs.PageCount Then cPageNo=obj_admin_Rs.PageCount 
  76. obj_admin_Rs.AbsolutePage=cPageNo
  77. Response.Write"<tr class=""hback"">"
  78. Dim i_tmp_n
  79. i_tmp_n = 0
  80. for i=1 to obj_admin_Rs.pagesize
  81. if obj_admin_Rs.eof Then exit For 
  82. Response.Write"<td class=""hback""><input type=""radio"" name=""Parent_Admin_Name"" value="""& obj_admin_Rs("Admin_Name") &""">"& obj_admin_Rs("Admin_Name") &"-"& obj_admin_Rs("Admin_Real_Name") &"</td>"
  83. obj_admin_Rs.movenext
  84. i_tmp_n = i_tmp_n +1 
  85. if i_tmp_n mod 4 = 0 then
  86. Response.Write("</tr>")
  87. End if
  88. Next
  89. Response.Write"</tr>"
  90. Response.Write"</table></td></tr>"
  91. %>
  92.     <tr class="hback"> 
  93.       <td height="25"> <%
  94. response.Write "<p>"&  fPageCount(obj_admin_Rs,int_showNumberLink_,str_nonLinkColor_,toF_,toP10_,toP1_,toN1_,toN10_,toL_,showMorePageGo_Type_,cPageNo)
  95. %>
  96.       </td>
  97.     </tr>
  98.     <%
  99. obj_admin_Rs.close
  100. set obj_admin_Rs = nothing
  101. End if
  102. %>
  103. </table>
  104. <table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="table">
  105.   <tr>
  106.     <td class="hback"><div align="right">
  107.           <input name="AdminID" type="hidden" id="AdminID" value="<% = Request.QueryString("ID")%>">
  108.           <input name="Action" type="hidden" id="Action" value="del_p">
  109.           <input type="submit" name="Submit" value="确定删除">
  110.       </div></td>
  111.   </tr>
  112. </table></form>
  113. </body>
  114. </html>
  115. <%
  116. if Request.Form("Action")="del_p" then
  117. if Trim(Request.Form("Parent_Admin_Name"))="" then
  118. strShowErr = "<li>请选择一个父级管理员!!!</li>"
  119. Response.Redirect("Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  120. Response.end
  121. Else
  122. Dim obj_admin_rs_2,tmp_str_d
  123. Set obj_admin_rs_2 = Conn.execute("Select Admin_Parent_Admin,Admin_Name,Admin_Is_Super,Admin_Add_Admin From FS_MF_Admin where ID="&NoSqlHack(Request.Form("AdminID")))
  124. tmp_str_d = obj_admin_rs_2("Admin_Name")
  125. if session("Admin_Is_Super")<>1 then
  126. if obj_admin_rs_2("Admin_Name")<>session("Admin_Name") then
  127. if obj_admin_rs_2("Admin_Is_Super")=1 then
  128. strShowErr = "<li>您不能删除系统管理员</li>"
  129. Response.Redirect("error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=SysAdmin_list.asp")
  130. Response.end
  131. end if
  132. if obj_admin_rs_2("Admin_Add_Admin")<>session("Admin_Name") then
  133. strShowErr = "<li>您不能删除别人的管理员。</li>"
  134. Response.Redirect("error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=SysAdmin_list.asp")
  135. Response.end
  136. end if
  137. end if
  138. end if
  139. '判断是否有隶属管理员
  140. Conn.execute("Update FS_MF_Admin set Admin_Parent_Admin ='"&Trim(Request.Form("Parent_Admin_Name"))&"' where Admin_Parent_Admin='"& tmp_str_d &"'")
  141. Conn.execute("Delete From FS_MF_Admin where id="&NoSqlHack(Request.Form("AdminID")))
  142. '插入日志
  143. '删除静态目录
  144. Dim p_FSO,tmp_path
  145. Set p_FSO = Server.CreateObject(G_FS_FSO)
  146. tmp_path = ".."& G_UP_FILES_DIR &"adminFiles"& tmp_str_d
  147. tmp_path = Server.MapPath(Replace(tmp_path,"\",""))
  148. if p_FSO.FolderExists(tmp_path) = true then p_FSO.DeleteFolder tmp_path
  149. set p_FSO = nothing
  150. Call MF_Insert_oper_Log("删除管理员","删除了管理员ID("& tmp_str_d &"):"&Request.Form("AdminID")&",同时锁定了此管理员下所有的隶属管理员",now,session("admin_name"),"MF")
  151. obj_admin_rs_2.close:set obj_admin_rs_2 = nothing
  152. strShowErr = "<li>删除管理员成功</li>"
  153. Response.Redirect("Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=SysAdmin_list.asp")
  154. Response.end
  155. End if
  156. End if
  157. Set Conn = Nothing
  158. %>