levellistold.asp
上传用户:llrg7406
上传日期:2007-03-02
资源大小:654k
文件大小:2k
源码类别:

教育系统应用

开发平台:

Delphi

  1. <%@ Language=VBScript %>
  2. <!--#include file ="identify.asp"-->
  3. <html>
  4. <head>
  5. <meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  6. <link rel="stylesheet" type="text/css" href="xcss.css">
  7. <script language="javascript">
  8. function diva_show(div_id)
  9. {
  10. if (document.all.item("a"+div_id).style.display == "block")
  11. {
  12. document.all.item("a"+div_id).style.display = "none";
  13. document.all.item("i"+div_id).src="images/icon_book_close.gif";
  14. document.all.item("f"+div_id).src="images/plus1.gif";
  15. }
  16. else
  17. {
  18. document.all.item("a"+div_id).style.display = "block";
  19. document.all.item("i"+div_id).src="images/icon_book_open.gif";
  20. document.all.item("f"+div_id).src="images/minus.gif";
  21. }
  22. </script>
  23. </head>
  24. <body topmargin="0" background="images/zapsmbknd.gif">
  25. <div id="sdf" name="sdf"></div>
  26. <img SRC="images/win16.gif" WIDTH="16" HEIGHT="16">&nbsp;<font style="font-family:隶书,Arial;font-size:20px;font-weight:bold">书库</font><br>
  27. <%
  28. set conn = server.CreateObject("adodb.connection")
  29. conn.Open application("dsn")
  30. sql = "select code,name from oldtype"
  31. set rs = server.CreateObject("adodb.recordset")
  32. rs.Open sql,conn
  33. set rs1 = server.CreateObject("adodb.recordset")
  34. while not rs.EOF
  35. %>
  36. <a name="aa<%=rs("code")%>"></a>
  37. <a href="#aa<%=rs("code")%>" onclick="diva_show('<%=rs("code")%>');"><img name="f<%=rs("code")%>" SRC="images/plus1.gif" border="0" WIDTH="16" HEIGHT="18"><img name="i<%=rs("code")%>" SRC="images/icon_book_close.gif" border="0"><%=rs("name")%></a><br>
  38. <div id="a<%=rs("code")%>" style="display:none">
  39. <%
  40. oldtypekey = trim(rs("code"))
  41. if len(oldtypekey)=0 then
  42. oldtypekey = "$$$$$$$$$$$$"
  43. end if
  44. sql1 = "select b.Code,b.Name from exchange a, type b where a.oldtype like '" & oldtypekey & "%' and a.code = b.code"
  45. rs1.Open sql1,conn
  46. while not rs1.EOF
  47. %>
  48. <img SRC="images/line.gif" WIDTH="16" HEIGHT="18"><a href="booklist.asp?b_type=<%=rs1("Code")%>" target="booklist"><img SRC="images/minus.gif" border="0" WIDTH="16" HEIGHT="18"><img SRC="images/icon_doc.gif" border="0"><%=rs1("Name")%></a><br>
  49. <%
  50. rs1.MoveNext
  51. wend
  52. rs1.Close
  53. %>
  54. </div>
  55. <%
  56. rs.MoveNext
  57. wend
  58. rs.Close
  59. set rs =nothing
  60. set rs1 = nothing
  61. conn.Close
  62. set conn =nothing
  63. %>
  64. </body>
  65. </html>