asp儲存二進位圖片到access資料庫

來源:互聯網
上載者:User
本文由topic.alibabacloud.com提供,介紹如何使用asp上傳二進位圖片並儲存到access資料庫。

具體實現代碼如下:

儲存圖片 使用者上傳頁面(3.asp):

<html><body><center>   <form name="mainForm" enctype="multipart/form-data" action="2.asp" method=post>   <input type=file name=mefile><br>   <input type=submit name=ok value="OK">   </form></center></body></html>


儲存圖片頁面(2.asp):

<%response.buffer=trueformsize=request.totalbytesformdata=request.binaryread(formsize)bncrlf=chrB(13) & chrB(10)pider=leftB(formdata,clng(instrb(formdata,bncrlf))-1)datastart=instrb(formdata,bncrlf & bncrlf)+4dataend=instrb(datastart+1,formdata,pider)-datastartmydata=midb(formdata,datastart,dataend)set connGraph=server.CreateObject("adodb.connection")connGraph.open"provider=microsoft.jet.oledb.4.0;data source=E:\PHP\valve.mdb;"set rec=server.createobject("ADODB.recordset")rec.Open "SELECT * FROM [user]",connGraph,1,3rec.addnewrec("img").appendchunk mydatarec.updaterec.closeset rec=nothingset connGraph=nothing%>




圖片讀取頁面(1.asp): 此頁面不允許有 html 代碼,否則會出現亂碼!

<%set rs=server.createobject("ADODB.recordset")sql=""rs.open strsql,connGraph,1,1Response.ContentType = "image/*"Response.BinaryWrite rs("").getChunk(8000000)%>

getChunk() 中的數字必須大於等於要顯示的圖片位元組數,否則圖片顯示不完全!


圖片顯示頁面(4.asp):

<html><body><img src="1.asp?id=要顯示的圖片id"></body></html>

文章地址:http://www.php.cn/csharp-article-377483.html

學編程就來topic.alibabacloud.com www.php.cn

~~~~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.