Image Issues may be similar to what's being discussed-

A

amy

I see lots of postings here about image problems but I think maybe my
issue is a little different...

I have jpegs in an image folder (folder named item pics), with fp2002
asp file accessing a MS access db. It's a hyperlink column which links
to the jpegs in this item pics folder. Some work and some don't, did a
properties (rightclick on the pic column) and interestingly I get this

doesn't work:
http://www.mywebsite.com/product all.asp#..\item pics\4047.JPG#

works:
http://www.mywebsite.com/item pics/4975.jpg#..\item pics\4975.jpg#


It sticks the "product all.asp" filename after my website name. It
does it each time for the same record so it's not a dynamic thing that
happens on the fly from a conversion standpoint (so I don't think I
need to convert my hyperlink column to text???) - I reassigned the
hyperlink the old fashion way from choosing from files and still --- I
cannot easily delete the record and re-add -- too many linkages etc...
any suggestions???

Thanks-
Amy
 
T

Thomas A. Rowe

The best option might be to just store the image file name in the database, then create the link on
your page like:

<img src="../item pics/<%=fp_rs("imagefieldname")%>"

and remove all spaces from folder and files name as is bad coding and will not work in all browsers.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Top