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

教育系统应用

开发平台:

Delphi

  1. <%@ Language=VBScript %>
  2. <!--#include file ="identify.asp"-->
  3. <%
  4. parent_title = Request.QueryString("title")
  5. parent_type_id = Request.QueryString("type_id")
  6. %>
  7. <html>
  8. <head>
  9. <meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  10. <link rel="stylesheet" type="text/css" href="xcss.css">
  11. <STYLE>
  12. <!--
  13. #page {position:absolute; z-index:0; left:0px; top:0px}
  14. .tt3 {font: 9pt/12pt "宋体"}
  15. .tt2 {font: 12pt/15pt "宋体"}
  16. a {color: blue;text-decoration:none}
  17. a:hover {color: blue;text-decoration:underline}
  18. -->
  19. </style>
  20. <script language=javascript>
  21. function show_onclick() {
  22. if(top.window.f2.cols != "0,*")
  23. {
  24. top.window.f2.cols = "0,*";
  25. }
  26. else
  27. {
  28. top.window.f2.cols = "300,*";
  29. }
  30. }
  31. </script>
  32. <script LANGUAGE="javascript">
  33. <!--
  34. function add_bm(bookid)
  35. {
  36. window.open("add_bookmark.asp?bookid=" + bookid,"_blank","height=430,width=300,status=no,toolbar=no,menubar=no,location=no");
  37. }
  38. function add_comment(bookid)
  39. {
  40. window.open("add_comment2.asp?bookid=" + bookid,"_blank","height=550,width=550,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,top=0,left=0");
  41. }
  42. function add_new(bookid)
  43. {
  44. window.open("add_new.asp?bookid=" + bookid,"_blank","height=430,width=300,status=no,toolbar=no,menubar=no,location=no");
  45. }
  46. function add_introduce(bookid)
  47. {
  48. window.open("add_introduce.asp?bookid=" + bookid,"_blank","height=430,width=300,status=no,toolbar=no,menubar=no,location=no");
  49. }
  50. //-->
  51. </script></head>
  52. <body topmargin="0" background="images/zapsmbknd.gif">
  53. <TABLE BORDER=0 CELLSPACING=0 WIDTH="100%" >
  54. <TR>
  55. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3">&nbsp;
  56. <BR><CENTER>
  57. <A href="read_parentclass.asp?title=<%=parent_title%>">上一级</A><br>
  58. <A href="xmain.asp">回首页</A>
  59. <BR><a href="#" onclick="javascript:show_onclick();">显示菜单</A></CENTER>
  60. </TD>
  61. <TD WIDTH="84%">
  62. <TABLE border=0 width="90%" align=center>
  63. <tr><td>
  64. <BR><B><FONT FACE="楷体_GB2312"><FONT COLOR="#ff6666"><FONT SIZE=+3><%=parent_title%></FONT></FONT></FONT></B>
  65. </td></tr>
  66. </table>
  67. <HR SIZE=1 NOSHADE WIDTH="94%" color="#ee9b73">
  68. <TABLE border=0 width="90%" align=center>
  69. <tr>
  70. <%
  71. set conn = server.CreateObject("adodb.connection")
  72. conn.Open application("dsn")
  73. i_temp = -1
  74. sql1 = "select id,title,type_id from bookwarelist where parent = '" & parent_title & "'"
  75. set rs1 = server.CreateObject("adodb.recordset")
  76. rs1.Open sql1,conn
  77. while not rs1.eof
  78. id = rs1("id")
  79. title = rs1("title")
  80. type_id = rs1("type_id")
  81. i_temp = i_temp + 1
  82. if i_temp = 3 then
  83. Response.Write "</tr><tr>"
  84. i_temp = 0
  85. end if
  86. %>
  87.           <TD class=tt3 width="30%"><br><IMG height=10 src="images/ar.gif" 
  88.             width=15><a href="read_class.asp?title=<%=title%>&type_id=<%=type_id%>"><b><%=title%></b></a></TD>
  89. <%
  90. rs1.MoveNext
  91. wend
  92. rs1.Close
  93. set rs1 = nothing
  94. %>
  95. </TR>
  96. </TABLE>
  97. <HR SIZE=1 WIDTH="94%" color="#ee9b73">
  98. <%'书名列表
  99. if len(parent_type_id)>0 and (not (parent_type_id=0)) then
  100. b_type = parent_type_id
  101. %>
  102. <br>
  103. <br>
  104. <TABLE border=0 width="90%" align=center>
  105. <tr>
  106. <td>
  107. <b>类别<font color=red><%=parent_title%></font>的书名列表</b><br><hr>
  108. <%
  109. strPage = Request.queryString("page")
  110. if len(strPage) = 0 then 
  111. strPage = "1"
  112. end if
  113. sql = "select bookid,name,Author,times from BookDetail where  type=" & b_type 
  114. set rs = server.CreateObject("adodb.recordset")
  115. rs.CursorLocation = 3   '客户端处理游标
  116. rs.Open sql,conn
  117. if rs.EOF then
  118. rs.Close
  119. set rs = nothing
  120. conn.Close
  121. set conn = nothing
  122. Response.Write "没有符合条件的记录。"
  123. Response.Write "</body></html>"
  124. Response.End
  125. end if
  126. rs.PageSize = 20
  127. rs.absolutepage=cint(strPage)
  128. select_count = rs.RecordCount
  129. select_PageCount = rs.PageCount
  130. Response.Write "共<b>" & select_PageCount & "</b>页<b>" & select_count & "</b>条记录,本页是第<b>" & strPage & "</b>页。" 
  131. if int(strPage) > 1 then
  132. Response.Write "&nbsp;<a href='read_class.asp?title=" & parent_title & "&type_id=" & parent_type_id & "&page=" & cstr(cint(strPage) - 1) & "'>上一页</a>"
  133. end if
  134. if int(strPage) < select_PageCount then
  135. Response.Write "&nbsp;<a href='read_class.asp?title=" & parent_title & "&type_id=" & parent_type_id & "&page=" & cstr(cint(strPage) + 1) & "'>下一页</a>"
  136. end if
  137. Response.Write "<br><br>"
  138. for i = 1 to rs.PageSize
  139. if rs.EOF then 
  140. exit for
  141. end if
  142. %>
  143. <nobr>
  144. <a href="readbook.asp?bookid=<%=rs("bookid")%>" title="作者:<%=rs("Author")%>" target="xbody"><img SRC="images/plus.gif" border="0" WIDTH="18" HEIGHT="19"><%=rs("name")%> (点击<%=rs("times")%>次)</a> &nbsp;<%=rs("Author")%>  &nbsp;<a href="#" onclick="add_bm(<%=rs("bookid")%>);">加书签</a>  &nbsp;<a href="#" onclick="add_comment(<%=rs("bookid")%>);">写书评</a>  &nbsp;<a href="bookcomment1.asp?bookid=<%=rs("bookid")%>">看书评</a>
  145. <%
  146. if session("usertype")<=1 then
  147. %>
  148.   &nbsp;<a href="#" onclick="add_introduce(<%=rs("bookid")%>)">推荐</a>
  149. <%
  150. end if
  151. %>
  152. <%
  153. if session("usertype")<=1 then
  154. %>
  155.   &nbsp;<a href="#" onclick="add_new(<%=rs("bookid")%>)">加入新书列表</a>
  156. <%
  157. end if
  158. %>
  159. </nobr><br>
  160. <%
  161. rs.MoveNext
  162. next
  163. rs.Close
  164. set rs = nothing
  165. conn.Close
  166. set conn = nothing
  167. %>
  168. </td>
  169. </tr>
  170. </table>
  171. <%
  172. else
  173. conn.Close
  174. set conn = nothing
  175. end if
  176. %>
  177. </TD>
  178. <TD VALIGN=bottom WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3"> </TD>
  179. </TR>
  180. <TR>
  181. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3"> </TD>
  182. <TD WIDTH="84%" class="tt3">
  183. <CENTER>
  184. <table WIDTH="100%" BORDER="0" CELLSPACING="1" CELLPADDING="1" align="center">
  185. <tr align="middle">
  186. <td height="10"><img height="1" src="images/dot.gif" width="500"></td></tr>
  187. <tr align="middle">
  188. <td>若有任何意见或者建议,请<a href="mailto:zhang95@263.net" style="TEXT-DECORATION: underline">写信给我们</a>
  189. <br><span style="FONT-FAMILY: verdana">&copy; CopyRight 1999 All Rights Reserved</span>科技有限公司</p>
  190. </td>
  191. </tr>
  192. </table>
  193. </TD>
  194. <TD VALIGN=top WIDTH="8%" BGCOLOR="#e0e0e0" class="tt3">
  195. <BR><CENTER>
  196. <A href="read_parentclass.asp?title=<%=parent_title%>">上一级</A><br>
  197. <A href="xmain.asp">回首页</A>
  198. <BR><a href="#" onclick="javascript:show_onclick();">显示菜单</A></CENTER>
  199. </TD>
  200. </TR>
  201. </TABLE>
  202. <BR>
  203. </body>
  204. </html>