ASP輕鬆實現將上傳圖片到資料庫

來源:互聯網
上載者:User
上傳|上傳圖片|資料|資料庫|上傳|上傳圖片     很久就想自己寫一寫程式了,不過由於賴就不想寫我,今天剛好有空,所以寫了這個小小的程式很容易一看就知道的,不多說了就此開始:

  我們做一個上傳的。資料據庫的欄位就id自動編號 big 欄位類型是 OLE 呵呵就簡單的那個欄位好了

  uppic.asp上傳程式名

  <%
  dim rs
  dim formsize,formdata,bncrlf,divider,datastart,dataend,mydata
  formsize=request.totalbytes  '取得用戶端發過來的大小
  formdata=request.binaryread(formsize)'把客戶發過來的資料轉成二進位作
  bncrlf=chrB(13) & chrB(10)
  divider=leftB(formdata,clng(instrb(formdata,bncrlf))-1)
  datastart=instrb(formdata,bncrlf & bncrlf)+4
  dataend=instrb(datastart+1,formdata,divider)-datastart
  mydata=midb(formdata,datastart,dataend)'上面總共是取得圖片的位元據
  %>
  <!--#include file="conn.asp"-->
  <%
  sql="select * from pic order by id desc"
  Set rs = Server.CreateObject("ADODB.Recordset")
  rs.Open sql,conn,3,2
  rs.addnew
  rs("big").appendchunk mydata    '增加到資料庫中
  rs.update
  set rs=nothing
  set conn=nothing
  %>

  接下來是顯示圖片:display.asp

  <!--#include file="conn.asp"--> '這個大家都知道吧,他就是與資料庫連的一個程式了
  <%
  id=request("id")
  set rs=server.createobject("ADODB.recordset")
  sql="select * from pic where id=" & id
  rs.open sql,conn,1,1
  Response.ContentType = "text/html" '顯示圖片的格式也可以用
  'Response.ContentType = "image/gif" 以gif顯示
  'Response.ContentType = "image/jpg" 以jpg顯示
  Response.BinaryWrite rs("big")  '顯示圖片
  rs.close
  set rs=nothing
  set connGraph=nothing
  %>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.