I have some .asp pages that retrieve a graphic out of an oracle database. Using explorer6 the user just needs to right click on an image after it is displayed to them and the user can click "save image" to save a copy of the image. However, explorer7 gives an error "system cannot find file specified" and the user can not save a copy of the image. I cant find any settings in explorer7 that might relate to this. Can anyone help?
The first link is in a table column and contains:
<td bgcolor="f7efde" align=left>
<font style="arial narrow; font-weight:700" size=1 face="arial">
<a href="imageone_stage2.asp?target= <%= rsnamelist.Fields("ing_no").Value %>">Photo</a>
</td>
This calls imageone_stage2.asp.
imageone_stage2.asp contains:
<TD BGcolor ="f7efde" align=center>
<font style ="arial narrow" size=1>
<IMG SRC=oneimage.ASP width=190 height=240>
</font>
</TD>
this calls oneimage.asp
oneimage.asp contains:
Set rs = con.Execute("SELECT image_data FROM images where images.active_flag = 'Y' and image_id=" & target)
Response.BinaryWrite rs("image_data")
I am guessing explorer7 is handling this response.binarywrite different from explorer6.
The first link is in a table column and contains:
<td bgcolor="f7efde" align=left>
<font style="arial narrow; font-weight:700" size=1 face="arial">
<a href="imageone_stage2.asp?target= <%= rsnamelist.Fields("ing_no").Value %>">Photo</a>
</td>
This calls imageone_stage2.asp.
imageone_stage2.asp contains:
<TD BGcolor ="f7efde" align=center>
<font style ="arial narrow" size=1>
<IMG SRC=oneimage.ASP width=190 height=240>
</font>
</TD>
this calls oneimage.asp
oneimage.asp contains:
Set rs = con.Execute("SELECT image_data FROM images where images.active_flag = 'Y' and image_id=" & target)
Response.BinaryWrite rs("image_data")
I am guessing explorer7 is handling this response.binarywrite different from explorer6.