getUserGroup.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 conn,typeId,result,User_Conn,GroupParaRs,i
  7. MF_Default_Conn
  8. MF_User_Conn
  9. MF_Session_TF
  10. if NoSqlHack(Request.QueryString("id"))=1 or NoSqlHack(Request.QueryString("id"))=0 then
  11. Set GroupParaRs=server.CreateObject(G_FS_RS)
  12. If G_IS_SQL_User_DB=0 then
  13. GroupParaRs.open "select GroupID,GroupName,GroupPopList from FS_ME_Group where GroupType="&Request.QueryString("ID")&" order by GroupPopList",User_Conn,1,3
  14. Else
  15. GroupParaRs.open "select GroupID,GroupName,GroupPopList from FS_ME_Group where GroupType="&Request.QueryString("ID"),User_Conn,1,3
  16. End if
  17. if Request.QueryString("id")=1 then 
  18. if Request.QueryString("page")="UserGroup" then
  19. result="<select name='GroupIndex' id='GroupIndex' onchange='getGroupParam(this)'>"&Chr(10)&Chr(13)&"<option value='user'>所有个人会员组</option>"
  20. elseif Request.QueryString("page")="News" then
  21. result="<select name='GroupIndex' id='GroupIndex'>"&Chr(10)&Chr(13)&"<option value='user'>所有个人会员组</option>"
  22. end if
  23. elseif Request.QueryString("id")=0 then 
  24. if Request.QueryString("page")="UserGroup" then
  25. result="<select name='GroupIndex' id='GroupIndex' onchange='getGroupParam(this)'>"&Chr(10)&Chr(13)&"<option value='corp'>所有企业会员组</option>"
  26. elseif Request.QueryString("page")="News" then
  27. result="<select name='GroupIndex' id='GroupIndex'>"&Chr(10)&Chr(13)&"<option value='corp'>所有企业会员组</option>"
  28. end if
  29. end if
  30. while not GroupParaRs.eof
  31. result=result&"<option value='"&GroupParaRs("Groupid")&"'>"&GroupParaRs("GroupName")&"</option>"&Chr(10)&chr(13)
  32. GroupParaRs.movenext
  33. wend
  34. result=result&"</select>"&Chr(10)&Chr(13)
  35. Response.Charset="GB2312"
  36. Response.Write(result)
  37. GroupParaRs.close
  38. Set GroupParaRs=nothing
  39. User_Conn.close
  40. Set User_Conn=nothing
  41. End if
  42. %>