> From: Mitchell, Glen (Corporate Channel Development) 
> On the page I use the following struts tag
> <html:img page="/images/xxxxx.gif" ....../>
> On the initial hit of the site this produces
> <img 
> src="http://host_name/images/xxxxx.gif:jsessionid=some_id_valu
> e" .....>
> The browser does not load this at all.
> On hitting Refresh on the browser the following is produced
> <img src="http://host_name/images/xxxxx.gif"; .....>

Is there anything dynamic in the path or filename to the image?  If not,
can you use a plain-old <img src="...">.  I serve images from the root
of the Apache webserver, so that Tomcat doesn't get involved other than
writing out the <img> tag.

I had the same problem with the appended jsessionid, and when the
content is dynamic, I used this:
 <link rel="stylesheet" href="<c:url value="${css}"/>" type="text/css">

-- 
Wendy Smoak
Application Systems Analyst, Sr.
ASU IA Information Resources Management 

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

Reply via email to