Debate_Action.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. <!--#include file="../FS_Inc/Func_Page.asp"-->
  6. <!--#include file="lib/strlib.asp" -->
  7. <!--#include file="lib/UserCheck.asp" -->
  8. <%'Copyright (c) 2006 Foosun Inc. Code by Einstein.liu
  9. Dim groupid,debateid,action,DebateRs,parentID
  10. action=request.QueryString("act")
  11. groupid=NoSqlHack(request.QueryString("classid"))
  12. debateid=NoSqlHack(request.QueryString("debateid"))
  13. if action="delete" then
  14. Set DebateRs=User_Conn.execute("Select parentID from FS_ME_GroupDebate where Debateid="&debateID)
  15. if not DebateRs.eof then
  16. parentID=DebateRs("parentID")
  17. Else
  18. parentID=0
  19. ENd if
  20. if parentID=0 then
  21. User_Conn.execute("Delete  From FS_ME_GroupDebate where DebateID="&debateID)
  22. User_Conn.execute("Delete  From FS_ME_GroupDebate where DebateID in (Select DebateID from FS_ME_GroupDebate where parentID="&debateID&")")
  23. Else
  24. User_Conn.execute("Delete * From FS_ME_GroupDebate where DebateID="&debateID)
  25. End if
  26. ENd if
  27. User_Conn.close
  28. Set User_Conn=nothing
  29. Set Fs_User = Nothing
  30. if err.number=0 then 
  31. if Cint(parentID)<>0 then
  32. Response.Redirect("lib/success.asp?ErrCodes=<li>修改成功</li>&ErrorURL=../Debate_unit.asp?gdid="&groupid&"***DebateID="&parentID)
  33. Else
  34. Response.Redirect("lib/success.asp?ErrCodes=<li>修改成功</li>&ErrorURL=../Group_unit.asp?gdid="&groupid)
  35. End if
  36. Response.End()
  37. else
  38. Response.Redirect("lib/error.asp?ErrCodes=<li>"&err.description&"</li>")
  39. Response.End()
  40. end if
  41. %>