上传到数据库?
其实将图片保存在数据库中不外乎两种方式。
1,图片文件保存在硬盘上,数据库中负责记录路径(不管是绝对路径还是相对路径)。
2,图片直接以二进制的形式保存在数据库中。
================首先不知道楼主说的是哪一种========================
据我判断,一般都是第一种,
给你个简单的方法
function getSignature(id)
set rs=server.createobject("ADODB.recordset")
sql="select * from test_img 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("img") '显示图片
rs.close
end function
帮您查了下资料
http://blog.csdn.net/xiciliu/article/details/4478521