add_cmaction0.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. bookid = Request.Form("bookid")
  12. username = Request.Form("username")
  13. imgname = Request.Form("imgname")
  14. title = Request.Form("title")
  15. book_title = request.form("book_title")
  16. detail = Request.Form("detail")
  17. set conn = server.CreateObject("adodb.connection")
  18. conn.Open Application("dsn")
  19. sql = "insert into bookcomment (username,bookid,imgname,title,booktitle, detail) values ('" & username & "'," & bookid & ",'" & imgname & "','" & title & "','" & book_title & "','" & detail & "')"
  20. conn.Execute sql
  21. conn.Close
  22. set conn = nothing
  23. %>
  24. <p>您的评论已经发表。</p>
  25. <center><INPUT type="button" value="确定" onclick="javascript:window.close();" id=button1 name=button1></center>
  26. </BODY>
  27. </HTML>