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

数据库编程

开发平台:

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 debateid,SelectName,result,User_Conn,debateGroupRs
  7. MF_Default_Conn
  8. MF_User_Conn
  9. MF_Session_TF
  10. debateid=NoSqlHack(Request.QueryString("debateid"))
  11. SelectName=NoSqlHack(Request.QueryString("name"))
  12. if debateid<>"" then
  13. Set debateGroupRs=server.CreateObject(G_FS_RS)
  14. debateGroupRs.open "select DebateID,Title,ParentID from FS_ME_GroupDebate where ParentID="&debateid,User_Conn,1,3
  15. if SelectName="Topic1" and  not debateGroupRs.eof then
  16. result="<select name='"&SelectName&"' id='"&SelectName&"' onchange=""getDebate(this,'Topic2')"">"
  17. result=result&"<option value=''>请选择二级主题</option>"
  18. elseif not debateGroupRs.eof then
  19. result="<select name='"&SelectName&"' id='"&SelectName&"'>"
  20. result=result&"<option value=''>请选择三级主题</option>"
  21. end if
  22. while not debateGroupRs.eof
  23. result=result&"<option value='"&debateGroupRs("DebateID")&"'>"&debateGroupRs("Title")&"</option>"&Chr(10)&chr(13)
  24. debateGroupRs.movenext
  25. wend
  26. if result<>"" then
  27. result=result&"</select>"&Chr(10)&Chr(13)
  28. end if
  29. Response.Charset="GB2312"
  30. Response.Write(result)
  31. debateGroupRs.close
  32. Set debateGroupRs=nothing
  33. User_Conn.close
  34. Set User_Conn=nothing
  35. end if
  36. %>