Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

strange asp behavior with exporer 7

Status
Not open for further replies.

bookouri

IS-IT--Management
Feb 23, 2000
1,464
US
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.

 
Since ASP scripting is processed by the web server, not by the browser, IE 7 (or any other browser) has no affect on ASP. You'll need to show the HTML output and ask your question in the HTML forum.

forum215

Lee
 
thanks, i didnt even think about that...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top