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

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!--#include file="../../FS_Inc/Const.asp" -->
  3. <!--#include file="../../FS_InterFace/MF_Function.asp" -->
  4. <!--#include file="../../FS_InterFace/ns_Function.asp" -->
  5. <!--#include file="../../FS_Inc/Function.asp" -->
  6. <%
  7. response.buffer=true
  8. Response.CacheControl = "no-cache"
  9. Dim Conn,User_Conn
  10. MF_Default_Conn
  11. 'session判断
  12. MF_Session_TF 
  13. if not MF_Check_Pop_TF("WS002") then Err_Show
  14. %>
  15. <html>
  16. <HEAD>
  17. <TITLE>FoosunCMS</TITLE>
  18. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  19. </HEAD>
  20. <link href="../images/skin/Css_<%=Session("Admin_Style_Num")%>/<%=Session("Admin_Style_Num")%>.css" rel="stylesheet" type="text/css">
  21. <BODY>
  22. <%
  23. Dim Act,ID,strShowErr,i
  24. Act=Request.QueryString("Act")
  25. if Act="single" then
  26. ID=Request.QueryString("ID")
  27. if ID="" Then
  28. strShowErr="<li>你必须选择一项再删除</li>"
  29. Response.Redirect("../Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  30. Response.end
  31. End if
  32. Conn.execute("delete From FS_WS_Class Where ID="&ID&"")
  33. strShowErr = "<li>操作成功</li>"
  34. Response.Redirect("../Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"")
  35. Response.end
  36. end if
  37. if Act="del" then
  38. ID=Request.form("ID")
  39. if ID="" Then
  40. strShowErr="<li>你必须选择一项再删除</li>"
  41. Response.Redirect("../Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"")
  42. Response.end
  43. End if
  44. ID=split(ID,",")
  45. For i=LBound(ID) To UBound(ID) 
  46. Conn.execute("delete From FS_WS_Class Where ID="&ID(i)&"")
  47. Next
  48. strShowErr = "<li>操作成功</li>"
  49. Response.Redirect("../Success.asp?ErrCodes="&Server.URLEncode(strShowErr)&"")
  50. Response.end
  51. End if
  52. Set Conn=nothing
  53. %>
  54. </body>
  55. </html>