UnRegulatenewDel.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_InterFace/NS_Function.asp" -->
  6. <!--#include file="lib/cls_main.asp" -->
  7. <%
  8. response.buffer=true
  9. Response.CacheControl = "no-cache"
  10. Dim Conn,User_Conn
  11. MF_Default_Conn
  12. MF_Session_TF
  13. if not MF_Check_Pop_TF("NS047") then Err_Show
  14. dim Fs_news
  15. set Fs_news = new Cls_News
  16. Dim Action,NewsID,C_NewsID,i,strShowErr
  17. Action=trim(Request.QueryString("Action"))
  18. NewsID=trim(Request.QueryString("NewsID"))
  19. IF Action<>"" then
  20. If Action="signDel" Then
  21. IF NewsID="" Then
  22. strShowErr="<li>你必须选择一项再删除</li>"
  23. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  24. Response.end
  25. End If
  26. '进行单条记录的删除
  27. Conn.execute("Delete From FS_NS_News_Unrgl where UnregulatedMain='"&NewsID&"'")
  28. Response.write "<script>alert('操作成功');location.href='DefineNews_Manage.asp';</script>"
  29. End If
  30. '进行批量删除
  31. If Action="del" Then
  32. C_NewsID=Replace(Request.form("C_NewsID")," ","")
  33. If C_NewsID="" Then
  34. strShowErr="<li>你必须选择一项再删除</li>"
  35. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  36. Response.end
  37. End If
  38. C_NewsID=split(C_NewsID,",")
  39. For i=LBound(C_NewsID) to UBound(C_NewsID)
  40. Conn.execute("Delete From FS_NS_News_Unrgl where UnregulatedMain='"&C_NewsID(i)&"'")
  41. Response.write "<script>alert('操作成功');location.href='DefineNews_Manage.asp';</script>"
  42. Next
  43. End If
  44. Else
  45. strShowErr="<li>你必须选择一项再删除</li>"
  46. Response.Redirect("lib/Error.asp?ErrCodes="&Server.URLEncode(strShowErr)&"&ErrorUrl=")
  47. Response.end
  48. End if
  49. Set Conn=nothing
  50. %>