ASP提取ACCESS数据库再显示图片,请求前辈指点
Untitled-12.asp<%
dim connGraph,rec,strsql
set connGraph=server.CreateObject("ADODB.connection")
connGraph.open"dsn=q3;"
set rec=server.createobject("ADODB.recordset")
strsql="select * from img"
rec.open strsql,connGraph,1,1
Response.ContentType="image/*"
Response.BinaryWrite(rec("image").getChunk(75000))
%>
Untitled-13.asp
<html>
<body>
<a SRC="Untitled-12.asp?id=<%=rec("image")%>"></a>
</body>
</html>
Untitled-12.asp打不开,Untitled-13.asp打开是空的。请求前辈指点
我的想法是直接提取ACCESS数据把图片显示出来就可以了