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?
This is the html that is returned by the ASP page. This displays a photo in both explorer 6 and 7. But in 7 the user can not right click and "save image"
<TD BGcolor ="f7efde" align=center>
<font style ="arial narrow" size=1>
<IMG SRC=oneimage.ASP width=190 height=240>
</font>
</TD>
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")
Does anybody have any idea if there are any settings in Explorer7 that might change 7's behavior so that my pages work again?
thanks for any suggestions
(I posted this originally in the ASP forum and they suggested i repost in HTML forum)
This is the html that is returned by the ASP page. This displays a photo in both explorer 6 and 7. But in 7 the user can not right click and "save image"
<TD BGcolor ="f7efde" align=center>
<font style ="arial narrow" size=1>
<IMG SRC=oneimage.ASP width=190 height=240>
</font>
</TD>
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")
Does anybody have any idea if there are any settings in Explorer7 that might change 7's behavior so that my pages work again?
thanks for any suggestions
(I posted this originally in the ASP forum and they suggested i repost in HTML forum)