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