This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
My Tomcat is installed at c:\jak-tomcat I copy the Servlet classes ( e.g. Serv01.class ) to c:\jak-tomcat\webapps\ROOT\WEB-INF\classes I access the Servlet using http://localhost:8080/servlet/Serv01 I am able access static HTML pages (e.g. main.html) using http://localhost:8080/main.html My question is, in the HTML that the Servlet (Serv01) generates, if I want to include a GIF file ( pic01.gif ) as part of a IMG tag could someone please tell me how to code the path for SRC parameter ?. I am looking for <IMG SRC ='What goes here'> Thanks.
Matthew Phillips
Ranch Hand
Joined: Mar 09, 2001
Posts: 2676
posted
0
This is more appropriate to the HTML forum. I will move it there.
------------------ Matthew Phillips Sun Certified Programmer for Java 2 Platform
John, Try putting your gifs in a directory under the one where your main.html is. Call that directory "images" The IMG SRC would then be "/images/pic1.gif" or if that doesn't work try just "images/pic1.gif" HTH Junilu