Forum Moderators: travelin cat
the jpg images on imacbook not displaying on this <Sorry, no personal URLs. See TOS [webmasterworld.com]> website.
, im using SAFARI BROWSER.
basically some images are displaying but only the images pulling through db using asp script not showing.
the web site can be best viewed using I.E. and Netscape.
I m using following script for displaying images.
Images are in a folder not in db but retrieving through script from db by their names.
Static IMAGES DISPLAY:
<IMG
align=bottom border=0 height=10 hspace=3
src="images/header_cart.gif"
width=12>
INTERACTIVE IMAGES DISPLAY:
<%if catrs("itempicturefile")<>"" then
response.write "<img src='images\thums\" & catRS("itempicturefile")&"'" & " " & " border='0'>"
else
Response.Write "<img src='images\awaitingimage.gif' border=0>"
end if
%>
actually infact not only on safari browser but all MAC browsers, the jpg images are not displaying.
it showing gif images but not jpg images.
its seems kinda compatibility issue with MAC operating systems over OS/2
Please help
[edited by: tedster at 6:08 am (utc) on Mar. 17, 2004]
Welcome to the board.
Some anonymous ASP coder from down under told me that you are missing a couple of ' in the in the else line.
It should be
Response.Write "<img src='images\awaitingimage.gif' border='0'>"
But he can't neither see how that would cause his problem of not seeing jpg's.
Are you sure there is no other possible cause for this?