asp 显示图片问题 怎么成下载啦!!
主程序<ahref='soft.asp?id=<%=rs("id")%>&photo=<%=rs("photo")%>'target='_blank'>浏览</a></t...
主程序
<a href='soft.asp?id=<%=rs("id")%>&photo=<%=rs("photo")%>' target='_blank'>浏 览</a></td>
SOFT.ASP
<!--#include file="load.asp" -->
<!--#include file="data.asp"-->
<%
id=request("id")
photo=request("photo")
Set rs= Server.CreateObject("ADODB.Recordset")
strSql="select photo from huwaigg where id=" & request("id")
rs.open strSql,Conn,3,1
'下面将文件输出到客户端浏览器
Response.ContentType = "image/*"
Response.BinaryWrite rs("photo").GetChunk(7500000)
%>
<head>
<link rel="stylesheet" href="oa.css">
</head>
<body leftmargin="0" topmargin="20" marginwidth="0" marginheight="0">
<table width="100%" border="0" cellspacing="1" cellpadding="2">
<tr> <td width="17%" valign="top"> <p align="right">显示该图片:
</td>
<td width="83%"> <A href="<%=rs("id")%>" target="_blank"><%=rs("photo")%></A> </td>
</table><div align="center">
<a href="javaScript:window.close()">关闭</a>
</div>
<%
response.end
response.close
rs.close
set rs=nothing
Close Conn()
%>
大侠们帮我看看,我检查啦,没有错误,怎么一点就叫我下载,是怎么回事. 展开
<a href='soft.asp?id=<%=rs("id")%>&photo=<%=rs("photo")%>' target='_blank'>浏 览</a></td>
SOFT.ASP
<!--#include file="load.asp" -->
<!--#include file="data.asp"-->
<%
id=request("id")
photo=request("photo")
Set rs= Server.CreateObject("ADODB.Recordset")
strSql="select photo from huwaigg where id=" & request("id")
rs.open strSql,Conn,3,1
'下面将文件输出到客户端浏览器
Response.ContentType = "image/*"
Response.BinaryWrite rs("photo").GetChunk(7500000)
%>
<head>
<link rel="stylesheet" href="oa.css">
</head>
<body leftmargin="0" topmargin="20" marginwidth="0" marginheight="0">
<table width="100%" border="0" cellspacing="1" cellpadding="2">
<tr> <td width="17%" valign="top"> <p align="right">显示该图片:
</td>
<td width="83%"> <A href="<%=rs("id")%>" target="_blank"><%=rs("photo")%></A> </td>
</table><div align="center">
<a href="javaScript:window.close()">关闭</a>
</div>
<%
response.end
response.close
rs.close
set rs=nothing
Close Conn()
%>
大侠们帮我看看,我检查啦,没有错误,怎么一点就叫我下载,是怎么回事. 展开
3个回答
展开全部
<A href="<%=rs("id")%>" target="_blank"><%=rs("photo")%></A>
你这个里面的rs("id")的值如果是图片的url地址那点了就是下载吧,把图片放到html或者asp页面里,href="放图片的页面地址",这样才行啊
你这个里面的rs("id")的值如果是图片的url地址那点了就是下载吧,把图片放到html或者asp页面里,href="放图片的页面地址",这样才行啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SOFT.ASP 改为
<!--#include file="load.asp" -->
<!--#include file="data.asp"-->
<%
id=request("id")
photo=request("photo")
Set rs= Server.CreateObject("ADODB.Recordset")
strSql="select photo from huwaigg where id=" & request("id")
rs.open strSql,Conn,3,1
'下面将文件输出到客户端浏览器
Response.ContentType = "image/*"
Response.BinaryWrite rs("photo").GetChunk(7500000)
%>
<head>
<link rel="stylesheet" href="oa.css">
</head>
<body leftmargin="0" topmargin="20" marginwidth="0" marginheight="0">
<table width="100%" border="0" cellspacing="1" cellpadding="2">
<tr> <td width="17%" valign="top"> <p align="right">显示该图片:
</td>
<td width="83%">
<a href='soft.asp?id=<%=rs("id")%>&photo=<%=rs("photo")%>' target='_blank'><img border="0" src="<%=rs("photo")%>" width="100%" height="100%"></A> </td>
</table><div align="center">
<a href="javaScript:window.close()">关闭</a>
</div>
<%
response.end
response.close
rs.close
set rs=nothing
Close Conn()
%>
<!--#include file="load.asp" -->
<!--#include file="data.asp"-->
<%
id=request("id")
photo=request("photo")
Set rs= Server.CreateObject("ADODB.Recordset")
strSql="select photo from huwaigg where id=" & request("id")
rs.open strSql,Conn,3,1
'下面将文件输出到客户端浏览器
Response.ContentType = "image/*"
Response.BinaryWrite rs("photo").GetChunk(7500000)
%>
<head>
<link rel="stylesheet" href="oa.css">
</head>
<body leftmargin="0" topmargin="20" marginwidth="0" marginheight="0">
<table width="100%" border="0" cellspacing="1" cellpadding="2">
<tr> <td width="17%" valign="top"> <p align="right">显示该图片:
</td>
<td width="83%">
<a href='soft.asp?id=<%=rs("id")%>&photo=<%=rs("photo")%>' target='_blank'><img border="0" src="<%=rs("photo")%>" width="100%" height="100%"></A> </td>
</table><div align="center">
<a href="javaScript:window.close()">关闭</a>
</div>
<%
response.end
response.close
rs.close
set rs=nothing
Close Conn()
%>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询