Click to See Complete Forum and Search --> : Disappearing Images


tmigliorino
07-07-2005, 03:28 PM
I am using ASP application variables to provide the path to the Logo gif and Banner jpg.

They do appear on everyone's pc but mine - they used to appear on mine and I am not sure what I changed to cause them to not appear.

The rest of the page appears and operates ok.

crookston
07-12-2005, 05:04 PM
Hmm.... going to need more info to help with this one. Can you provide sample codes? My guess is that the image path is not correct, but without examples it's hard to say.

Casey Crookston
www.InternetOpus.com

tmigliorino
07-18-2005, 12:06 PM
I am using an ASP session variable with the path in the global.asa. The path is correct:

application("appLogo") = "images\banners\cjmLogo.gif"
application("appBanner") = "images\banners\cjmBannerForWeb.jpg"

and the code is correct:

<img alt="Logo" src="<%=application("appLogo")%>">
<img alt="Banner" src="<%=application("appBanner")%>">

all of the files have an .asp extention.

Also when I view the site from other PCs the Logo and Banner appear properly.