From: "Xeth Waxman" <[EMAIL PROTECTED]>
> body.append("<A HREF='<link here>'><IMG BORDER=0
>
SRC='C:/jakarta-tomcat-5.0.12/webapps/ROOT/WEB-INF/Images/logo.gif'></A>");

The Servlet Specification requires your container to restrict access to
anything under WEB-INF.  Since images are requested by the browser
separately after it receives the page, even if you managed to get the
"right" URL in your <img> tag, the container will refuse to serve the image.

I suggest putting it in ...ROOT/images/logo.gif, then try your <img> tag
again without the full path.

-- 
Wendy Smoak


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to