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

教育系统应用

开发平台:

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. <STYLE>
  8. <!--
  9. #page {position:absolute; z-index:0; left:0px; top:0px}
  10. .tt3 {font: 9pt/12pt "宋体"}
  11. .tt2 {font: 12pt/15pt "宋体"}
  12. a {text-decoration:none}
  13. a:hover {color: blue;text-decoration:underline}
  14. -->
  15. </STYLE>
  16. <script language=javascript>
  17. function show_onclick() {
  18. if(top.window.f2.cols != "0,*")
  19. {
  20. top.window.f2.cols = "0,*";
  21. }
  22. else
  23. {
  24. top.window.f2.cols = "300,*";
  25. }
  26. }
  27. </script>
  28. </head>
  29. <body topmargin="0" background="images/zapsmbknd.gif">
  30. <TABLE BORDER=0 CELLSPACING=0 WIDTH="100%" >
  31. <TR>
  32. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3">&nbsp;
  33. <BR><CENTER>
  34. <A href="xmain.asp">回首页</A>
  35. <BR><a href="#" onclick="javascript:show_onclick();">显示菜单</A></CENTER>
  36. </TD>
  37. <TD WIDTH="84%">
  38. <TABLE border=0 width="90%" align=center>
  39. <tr><td>
  40. <BR><B><FONT FACE="楷体_GB2312"><FONT COLOR="#ff6666"><FONT SIZE=+3>书库</FONT></FONT></FONT></B>
  41. </td></tr>
  42. </table>
  43. <HR SIZE=1 NOSHADE WIDTH="94%" color="#ee9b73">
  44. <TABLE border=0 width="90%" align=center>
  45. <%
  46. set conn = server.CreateObject("adodb.connection")
  47. conn.Open application("dsn")
  48. sql = "select id,title,type_id from bookwarelist where parent = '书库'"
  49. set rs = server.CreateObject("adodb.recordset")
  50. rs.Open sql,conn
  51. while not rs.eof
  52. id = rs("id")
  53. title = rs("title")
  54. type_id = rs("type_id")
  55. %>
  56.         <TR>
  57.           <TD class=tt3 colSpan=3 width="90%"><br><IMG height=10 src="images/ar.gif" 
  58.             width=15><B><FONT color=#008000><%=title%></FONT></B></TD></TR>
  59.         <TR>
  60. <%
  61. sql1 = "select id,title,type_id from bookwarelist where parent = '" & title & "'"
  62. set rs1 = server.CreateObject("adodb.recordset")
  63. rs1.Open sql1,conn
  64. i_temp = 0
  65. do while not rs1.eof
  66. i_temp = i_temp + 1
  67. id1 = rs1("id")
  68. title1 = rs1("title")
  69. type_id1 = rs1("type_id")
  70. %>
  71.           <TD bgColor=#eaeaea class=tt3 width="23%"><FONT 
  72.             color=#008000>-</FONT><A 
  73.             href="read_class.asp?title=<%=title1%>&type_id=<%=type_id1%>"><%=title1%></A></TD>
  74. <%
  75. rs1.MoveNext
  76. if i_temp>=4 then
  77. i_temp = 0
  78. %>
  79. </tr><tr>
  80. <%
  81. end if
  82. loop
  83. rs1.Close
  84. set rs1 = nothing
  85. rs.MoveNext
  86. wend
  87. %>            
  88. </TABLE>
  89. <%
  90. conn.Close
  91. set conn = nothing
  92. %>
  93. </TD>
  94. <TD VALIGN=bottom WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3"> </TD>
  95. </TR>
  96. <TR>
  97. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3"> </TD>
  98. <TD WIDTH="84%" class="tt3">
  99. <HR SIZE=1 WIDTH="94%" color="#ee9b73">
  100. <CENTER>
  101. <table WIDTH="100%" BORDER="0" CELLSPACING="1" CELLPADDING="1" align="center">
  102. <tr align="middle">
  103. <td height="10"><img height="1" src="images/dot.gif" width="500"></td></tr>
  104. <tr align="middle">
  105. <td>若有任何意见或者建议,请<a href="mailto:zhang95@263.net" style="TEXT-DECORATION: underline">写信给我们</a>
  106. <br><span style="FONT-FAMILY: verdana">&copy; CopyRight 1999 All Rights Reserved</span>XX科技有限公司</p>
  107. </td>
  108. </tr>
  109. </table>
  110. </TD>
  111. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3">
  112. <BR><CENTER>
  113. <A href="xmain.asp">回首页</A>
  114. <BR><a href="#" onclick="javascript:show_onclick();">显示菜单</A></CENTER>
  115. </TD>
  116. </TR>
  117. </TABLE>
  118. <BR>
  119. </body>
  120. </html>