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

教育系统应用

开发平台:

Delphi

  1. <%@ Language=VBScript %>
  2. <!--#include file ="identify.asp"-->
  3. <html>
  4. <head>
  5.   <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <link rel="stylesheet" type="text/css" href="xcss.css">
  7. <meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
  8. </head>
  9. <body background="images/zapsmbknd.gif">
  10. <% 
  11. b_bookid = Request.QueryString("bookid")
  12. set conn = server.CreateObject("adodb.connection")
  13. conn.Open Application("dsn")
  14. sql = "select bookid,name,author,dir from BookDetail where bookid=" & b_bookid
  15. set rs = server.CreateObject("adodb.recordset")
  16. rs.Open sql,conn
  17. if rs.EOF then
  18. rs.Close
  19. set rs = nothing
  20. conn.Close
  21. set conn = nothing
  22. Response.Write "找不到您要的文件!"
  23. Response.End
  24. end if
  25. dir = rs("dir")
  26. b_name = rs("name")
  27. author = rs("author")
  28. rs.Close
  29. set rs = nothing
  30. conn.Close
  31. set conn = nothing
  32. dir = replace(dir,"","/")
  33. %>
  34. <form action="add_introaction.asp" method="post" id="form1" name="form1">
  35. <h3>添加到推荐书目:</h3>
  36. <p><b>书名:</b><%=b_name%></p>
  37. <p><b>作者:</b><%=author%></p>
  38. <p valign="top"><b>给推荐书目的简要评价:</b><br>
  39. <input type="hidden" name="username" value="<%=session("username")%>">
  40. <input type="hidden" name="bookid" value="<%=b_bookid%>">
  41. <textarea id="detail" name="detail" style="HEIGHT: 38px; WIDTH: 250px" valign="top"></textarea></p>
  42. <table WIDTH="250" BORDER="0" CELLSPACING="1" CELLPADDING="1">
  43. <tr>
  44. <td align="middle"><input type="submit" value="添加" id="submit1" name="submit1">&nbsp;&nbsp;<input type="button" value="取消" onclick="javascript:window.close();" id="button1" name="button1"></td>
  45. </tr>
  46. </table>
  47. </form>
  48. </body>
  49. </html>