UploadDoc.aspx
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:1k
源码类别:

.net编程

开发平台:

C#

  1. <%@ Page Language="VB" %>
  2. <%
  3.     Dim conn, dbpath
  4.     conn = Server.CreateObject("ADODB.Connection")
  5.     dbpath = Server.MapPath("demodata/soademo.mdb")
  6.     conn.open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & dbpath)
  7.  %>
  8.  <%
  9.      Dim strsql
  10.      '********************************************************************
  11.      '按页面提交方式提交文档
  12.      ' 读数据库相关操作
  13.      strsql = "update " & Request.QueryString("Type") & " set subject='" & Request.Form("inputSubject") & "' where ID=" & Request.QueryString("ID")
  14.      conn.execute(strsql)
  15.      conn.Close()
  16.      ' 释放数据库连接对象
  17.      conn = Nothing
  18.      Response.Write("文件上传成功!")
  19. %>
  20. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  21. <script runat="server">
  22. </script>
  23. <html xmlns="http://www.w3.org/1999/xhtml" >
  24. <head runat="server">
  25.     <title>无标题页</title>
  26. </head>
  27. <body>
  28.     <form id="form1" runat="server">
  29.     <div>
  30.         <a href="javascript:window.close();">关闭</a>
  31.     </div>
  32.     </form>
  33. </body>
  34. </html>