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

教育系统应用

开发平台:

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. <script language="javascript">
  9. function check()
  10. {
  11. if (form1.title.value=="")
  12. {
  13. alert ("请填写标题!");
  14. return false;
  15. }
  16. return true;
  17. }
  18. function MyGrade(str) {
  19. str = new Array(5);
  20. str[0] = "不会吧,居然是这么烂?";
  21. str[1] = "原来这本书不合你的口味啊";
  22. str[2] = "平淡无奇,就这样吧?";
  23. str[3] = "看来你很喜欢这本书哦";
  24. str[4] = "这本书有这么好吗?";
  25. for(i=0;i<5;i++) {
  26. if (document.form2.grade[i].checked==true) {
  27. if(confirm(str[i])) {
  28. form2.submit();
  29. }
  30. }
  31. }
  32. }
  33. </script>
  34. </head>
  35. <body background="images/zapsmbknd.gif">
  36. <% 
  37. b_bookid = session("bookid")
  38. if len(b_bookid)=0 then
  39. Response.Write "您没有打开任何一本书!"
  40. Response.End
  41. end if
  42. set conn = server.CreateObject("adodb.connection")
  43. conn.Open Application("dsn")
  44. sql = "select bookid,name,author from BookDetail where bookid=" & b_bookid
  45. set rs = server.CreateObject("adodb.recordset")
  46. rs.Open sql,conn
  47. if rs.EOF then
  48. rs.Close
  49. set rs = nothing
  50. conn.Close
  51. set conn = nothing
  52. Response.Write "找不到您要的文件!"
  53. Response.End
  54. end if
  55. b_name = rs("name")
  56. author = rs("author")
  57. rs.Close
  58. set rs = nothing
  59. conn.Close
  60. set conn = nothing
  61. %>
  62. <p><b>书名:</b><%=b_name%></p>
  63. <p><b>作者:</b><%=author%></p>
  64. <FORM action="grade_submit.asp" method=POST id=form2 name=form2> <hr>
  65. <h3>我要给你打打分</h3>
  66. <input name="grade" onclick="Javascript:MyGrade();" type="radio" value="1">1 
  67. <input name="grade" onclick="Javascript:MyGrade();" type="radio" value="2">2 
  68. <input CHECKED name="grade" onclick="Javascript:MyGrade();" type="radio" value="3">3 
  69. <input name="grade" onclick="Javascript:MyGrade();" type="radio" value="4">4 
  70. <input name="grade" onclick="Javascript:MyGrade();" type="radio" value="5">5 
  71. <input type="hidden" name="username" value="<%=session("username")%>">
  72. <input type="hidden" name="bookid" value="<%=b_bookid%>">
  73. </FORM>
  74. <hr>
  75. <form action="add_cmaction0.asp" method="POST" id="form1" name="form1" onsubmit="return check();">
  76. <p><h3>我要发表看法:</h3>
  77. <b>选一个表情图标:</b>
  78. <img src="images/p1.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p1" checked>&nbsp;
  79. <img src="images/p2.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p2">&nbsp;
  80. <img src="images/p3.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p3">&nbsp;
  81. <img src="images/p4.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p4">&nbsp;
  82. <img src="images/p5.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p5">&nbsp;
  83. <img src="images/p6.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p6">&nbsp;
  84. <img src="images/p7.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p7">&nbsp;
  85. <img src="images/p8.gif" WIDTH="15" HEIGHT="15"><input type="radio" name="imgname" value="p8">&nbsp;
  86. <br>
  87. <b>评论标题:</b><input type="text" name="title" size="40"></p>
  88. <p valign="top"><b>您的评论:</b><br>
  89. <input type="hidden" name="username" value="<%=session("username")%>">
  90. <input type="hidden" name="bookid" value="<%=b_bookid%>">
  91. <textarea id="detail" name="detail" style="HEIGHT: 120px; WIDTH: 500px" valign="top" wrap="hard"></textarea></p>
  92. <table WIDTH="550" BORDER="0" CELLSPACING="1" CELLPADDING="1">
  93. <tr>
  94. <td align="center"><input type="submit" value="添加" id="submit1" name="submit1">&nbsp;&nbsp;<input type="button" value="取消" onclick="javascript:window.close();" id="button1" name="button1"></td>
  95. </tr>
  96. </table>
  97. </form>
  98. </body>
  99. </html>