getMyClass.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. <!--#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. Response.Charset="GB2312"
  10. Dim classRs,classid,classIndex
  11. classid=trim(request.QueryString("classid"))
  12. classIndex=trim(request.QueryString("index"))
  13. if classid="" then response.End()
  14. Set classRs=User_Conn.execute("select ClassID,ClassCName,UserNumber from FS_ME_InfoClass where UserNumber='"&session("FS_UserNumber")&"' and parentid="&classid)'ID or ClassID?
  15. Response.Write("<select name='sel_myclass_"&(Cint(classIndex)+1)&"' onChange=""getMyChildClass(this,"&(Cint(classIndex)+1)&")"">"&vbcrlf)
  16. Response.Write("<option value='myclass'>"&(Cint(classIndex)+1)&"级专栏</option>"&vbcrlf)
  17. while not classRs.eof
  18. Response.Write("<option value='"&classRs("Classid")&"'>"&classRs("ClassCName")&"</option>"&vbcrlf) 
  19. classRs.movenext
  20. Wend
  21. Response.Write("</select>"&vbcrlf)
  22. Conn.close
  23. User_Conn.close
  24. Set User_Conn=nothing
  25. Set Conn=nothing
  26. %>