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

教育系统应用

开发平台:

Delphi

  1. <%@ Language=VBScript %>
  2. <!--#include file ="identify.asp"-->
  3. <%
  4. parent_title = Request.QueryString("title")
  5. %>
  6. <% 
  7. dim i_temp
  8. dim conn
  9. set conn = server.CreateObject("adodb.connection")
  10. conn.Open application("dsn")
  11. sub recursion(m_title)
  12. dim rs
  13. sql = "select id,title,type_id from bookwarelist where parent = '" & m_title & "'"
  14. set rs = server.CreateObject("adodb.recordset")
  15. rs.Open sql,conn
  16. while not rs.eof
  17. id0 = rs("id")
  18. title0 = rs("title")
  19. type_id0 = rs("type_id")
  20. if type_id0 <> 0 then
  21. i_temp = i_temp + 1
  22. if i_temp = 3 then
  23. Response.Write "</tr><tr>"
  24. i_temp = 0
  25. end if
  26. %>
  27. <TD class=tt3 width="30%"><br><IMG height=10 src="images/ar.gif" 
  28. width=15><a href="booklist.asp?b_type=<%=type_id0%>"><b><%=title0%></b></a></TD>
  29. <%
  30. end if
  31. call recursion(title0)
  32. rs.movenext
  33. wend
  34. rs.close
  35. set rs = nothing
  36. end sub 
  37. %> 
  38. <html>
  39. <head>
  40. <meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  41. <link rel="stylesheet" type="text/css" href="xcss.css">
  42. <STYLE>
  43. <!--
  44. #page {position:absolute; z-index:0; left:0px; top:0px}
  45. .tt3 {font: 9pt/12pt "宋体"}
  46. .tt2 {font: 12pt/15pt "宋体"}
  47. a {color: blue;text-decoration:none}
  48. a:hover {color: blue;text-decoration:underline}
  49. -->
  50. </style>
  51. <script language=javascript>
  52. function show_onclick() {
  53. if(top.window.f2.cols != "0,*")
  54. {
  55. top.window.f2.cols = "0,*";
  56. }
  57. else
  58. {
  59. top.window.f2.cols = "300,*";
  60. }
  61. }
  62. </script>
  63. </head>
  64. <body topmargin="0" background="images/zapsmbknd.gif">
  65. <TABLE BORDER=0 CELLSPACING=0 WIDTH="100%" >
  66. <TR>
  67. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3">&nbsp;
  68. <BR><CENTER>
  69. <A href="readmain.asp">上一级</A><br>
  70. <A href="xmain.asp">回首页</A>
  71. <BR><a href="#" onclick="javascript:show_onclick();">显示菜单</A></CENTER>
  72. </TD>
  73. <TD WIDTH="84%">
  74. <TABLE border=0 width="90%" align=center>
  75. <tr><td>
  76. <BR><B><FONT FACE="楷体_GB2312"><FONT COLOR="#ff6666"><FONT SIZE=+3><%=parent_title%></FONT></FONT></FONT></B>
  77. </td></tr>
  78. </table>
  79. <HR SIZE=1 NOSHADE WIDTH="94%" color="#ee9b73">
  80. <TABLE border=0 width="90%" align=center>
  81. <tr>
  82. <%
  83. i_temp = -1
  84. sql1 = "select id,title,type_id from bookwarelist where parent = '" & parent_title & "'"
  85. set rs1 = server.CreateObject("adodb.recordset")
  86. rs1.Open sql1,conn
  87. while not rs1.eof
  88. id = rs1("id")
  89. title = rs1("title")
  90. type_id = rs1("type_id")
  91. if type_id <> 0 then
  92. i_temp = i_temp + 1
  93. if i_temp = 3 then
  94. Response.Write "</tr><tr>"
  95. i_temp = 0
  96. end if
  97. %>
  98.           <TD class=tt3 width="30%"><br><IMG height=10 src="images/ar.gif" 
  99.             width=15><a href="booklist.asp?b_type=<%=type_id%>"><b><%=title%></b></a></TD>
  100. <%
  101. end if
  102. call recursion(title)
  103. rs1.MoveNext
  104. wend
  105. %>            
  106. </TR>
  107. </TABLE>
  108. <%
  109. conn.Close
  110. set conn = nothing
  111. %>
  112. </TD>
  113. <TD VALIGN=bottom WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3"> </TD>
  114. </TR>
  115. <TR>
  116. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3"> </TD>
  117. <TD WIDTH="84%" class="tt3">
  118. <HR SIZE=1 WIDTH="94%" color="#ee9b73">
  119. <CENTER>
  120. <table WIDTH="100%" BORDER="0" CELLSPACING="1" CELLPADDING="1" align="center">
  121. <tr align="middle">
  122. <td height="10"><img height="1" src="images/dot.gif" width="500"></td></tr>
  123. <tr align="middle">
  124. <td>若有任何意见或者建议,请<a href="mailto:zhang95@263.net" style="TEXT-DECORATION: underline">写信给我们</a>
  125. <br><span style="FONT-FAMILY: verdana">&copy; CopyRight 1999 All Rights Reserved</span>科技有限公司</p>
  126. </td>
  127. </tr>
  128. </table>
  129. </TD>
  130. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3">
  131. <BR><CENTER>
  132. <A href="readmain.asp">上一级</A><br>
  133. <A href="xmain.asp">回首页</A>
  134. <BR><a href="#" onclick="javascript:show_onclick();">显示菜单</A></CENTER>
  135. </TD>
  136. </TR>
  137. </TABLE>
  138. <BR>
  139. </body>
  140. </html>