Re: Displaying images with dynamic names

2005-01-19 Thread Guillaume Cottenceau
Dakota Jack writes: > Just write the response with dynamic code that puts the correct name > in the HTML, assuming that you are talking to a browser with response > objects that are HTML. > > For example, might come from src=''>. Whatever you do, it has to Why not ? -- Guillaume Cottencea

Re: Displaying images with dynamic names

2005-01-18 Thread Stefan Clos
Just map the picure to a URL and make an reference in your jsp to it. Charles A Jordan schrieb: Hello All, I have a struts application which creates image (png) files which have the session ID embedded in the name to make them unique. How do I display these in my jsp? I can add the names to my act

Re: Displaying images with dynamic names

2005-01-18 Thread Dakota Jack
Just write the response with dynamic code that puts the correct name in the HTML, assuming that you are talking to a browser with response objects that are HTML. For example, might come from . Whatever you do, it has to end up with good old HTML. Actually, I do all my images as . This allows m

Displaying images with dynamic names

2005-01-18 Thread Charles A Jordan
Hello All, I have a struts application which creates image (png) files which have the session ID embedded in the name to make them unique. How do I display these in my jsp? I can add the names to my actionform, but I don't know how to display the images. Any help would be greatly appreceated. Char