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

教育系统应用

开发平台:

Delphi

  1. <%@ Language=VBScript %>
  2. <!--#include file ="identify.asp"-->
  3. <% 
  4. 'b_name = Request.querystring("name")
  5. 'b_author = Request.QueryString("author")
  6. b_bookid = Request.QueryString("bookid")
  7. if len(b_bookid)=0 then
  8. Response.Write "找不到您要的文件!"
  9. Response.End
  10. end if
  11. set conn = server.CreateObject("adodb.connection")
  12. conn.Open Application("dsn")
  13. sql = "select bookid,dir,identify_num from BookDetail where bookid=" & b_bookid
  14. set rs = server.CreateObject("adodb.recordset")
  15. rs.Open sql,conn
  16. if rs.EOF then
  17. rs.Close
  18. set rs = nothing
  19. conn.Close
  20. set conn = nothing
  21. Response.Write "找不到您要的文件!"
  22. Response.End
  23. end if
  24. dir = rs("dir")
  25. identify_num = rs("identify_num")
  26. rs.Close
  27. set rs = nothing
  28. if cint(identify_num)<cint(session("usertype")) then
  29. conn.Close
  30. set conn = nothing
  31. Response.Write "您的权限不够"
  32. Response.End
  33. end if
  34. session("bookid") = b_bookid
  35. sql = "update BookDetail set Times = Times + 1 where bookid=" & b_bookid
  36. conn.Execute sql
  37. conn.Close
  38. set conn = nothing
  39. dir = replace(dir,"","/")
  40. 'Response.Write dir
  41. Response.Redirect dir
  42. %>