Focal Point
What path is correct to shared images in a htm page?

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/3671010271

June 14, 2006, 04:07 PM
Joan Williamson-Kelly
What path is correct to shared images in a htm page?
I'm having a problem on an htm page developed in HTML layout painter with images. If I path to the images like this:

src="../images/backsolid.jpg"

the page does not show the jpg in a browser window opened from Dev Studio, but it does show the jpg in a browser window opened using a url to the htm page.

If I path to the images like this:

src="../approot/images/backsolid.jpg"

the opposite is true. The page displays the images fine in a browser window using "run" from Dev Studio, but the page opened using a url does not.

What's up???

The .htm page is in a separate application/web application folder, and I am wanting it to look at the .jpg image(s) stored in a folder named "images".

It's seems wrong that the "right" way to deploy a page would give a bad result if using "run" from Dev Studio.
June 15, 2006, 02:27 PM
TexasStingray
Try This src="/approot/images/backsolid.jpg"

no ..




Scott

Bingo! That's the magic bullet.
Thank you.