NewsAction.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_Inc/Function.asp" -->
  5. <%
  6. on error resume next
  7. Dim User_Conn,NewsID,isLock,Conn
  8. MF_Default_Conn
  9. MF_User_Conn
  10. MF_Session_TF
  11. NewsID=NoSqlHack(Request("newsid"))
  12. isLock=NoSqlHack(Request("value"))
  13. if isLock="true" then
  14. if isnumeric(NewsID) then 
  15. User_Conn.execute("update FS_ME_News set isLock=1 where NewsID="&NewsID)
  16. elseif NewsID="all" then
  17. User_Conn.execute("update FS_ME_News set isLock=1")
  18. end if
  19. elseif isLock="false" then
  20. if isnumeric(NewsID) then 
  21. User_Conn.execute("update FS_ME_News set isLock=0 where NewsID="&NewsID)
  22. elseif NewsID="all" then
  23. User_Conn.execute("update FS_ME_News set isLock=0")
  24. end if
  25. end if
  26. if Request("act")="delete" then
  27. User_Conn.Execute("Delete from FS_ME_News where NewsID in ("&NoSqlhack(Request("deleteNews"))&")")
  28. if err.number>0 then
  29. Response.Redirect("../error.asp?ErrCodes="&err.description&"ErrorUrl="&Request.ServerVariables("HTTP_REFERER"))
  30. Response.End()
  31. else
  32. Response.Redirect("../success.asp?ErrCodes=<li>删除操作成功</li>&ErrorUrl="&Request.ServerVariables("HTTP_REFERER"))
  33. Response.End()
  34. end if
  35. end if
  36. User_Conn.close
  37. set User_Conn=nothing
  38. %>
  39. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  40. <html>
  41. <head>
  42. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  43. <title>FoosunCMS</title>
  44. </head>
  45. <body>
  46. </body>
  47. </html>