getClass.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. <%'Copyright (c) 2006 Foosun Inc. Code by Einstein.liu
  6. Response.Charset="GB2312"
  7. Dim classRs,classid,classIndex,Conn
  8. MF_Default_Conn
  9. classid=trim(request.QueryString("classid"))
  10. classIndex=trim(request.QueryString("index"))
  11. if classid="" then response.End()
  12. Set classRs=Conn.execute("select id,ClassName,classid from FS_NS_NewsClass where isConstr=1 and ParentID=(select ClassID from FS_NS_NewsClass where id="&classid&")")'ID or ClassID?
  13. Response.Write("<select name='sel_class_"&(Cint(classIndex)+1)&"' onChange=""getChildClass(this,"&(Cint(classIndex)+1)&")"">"&vbcrlf)
  14. Response.Write("<option value='class'>"&(Cint(classIndex)+1)&"级栏目</option>"&vbcrlf)
  15. while not classRs.eof
  16. Response.Write("<option value='"&classRs("id")&"'>"&classRs("ClassName")&"</option>"&vbcrlf) 
  17. classRs.movenext
  18. Wend
  19. Response.Write("</select>"&vbcrlf)
  20. Conn.close
  21. Set Conn=nothing
  22. %>