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

教育系统应用

开发平台:

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. set conn = server.CreateObject("adodb.connection")
  12. conn.Open application("dsn")
  13. commentid = Request.QueryString("commentid")
  14. sql = "select commentid,username,imgname,title,settime,detail from bookcomment where commentid=" & commentid
  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. while not rs.EOF
  26. %>
  27. <h3><img SRC="images/<%=rs("imgname")%>.gif" border="0">&nbsp;<%=rs("title")%></h3><hr>
  28. <p><b>作者:</b><%=rs("username")%></p>
  29. <p><b>发表时间:</b><%=rs("settime")%></p>
  30. <p><b>评论全文</b></p>
  31. <pre>  <%=rs("detail")%></pre>
  32. <%
  33. rs.MoveNext
  34. wend
  35. rs.Close
  36. set rs = nothing
  37. conn.Close
  38. set conn = nothing
  39. %>
  40. </table>
  41. </body>
  42. </html>