Hi,
I have a web application that does the following:
1) User uploads an image.
2) Application saves this image is a local directory on the server.
ex: C:/Users/684/Profile/images/_DSC0034.jpg
3) Application stores the newly created image path in the database.
4) Application displays the image on a web page using the path from the db:
ex: C:/Users/684/Profile/images/_DSC0034.jpg
However, in the last step where the application trys to display the image, the image FAILS to display. This used to on a Websphere server. I've moved to a
Tomcat server and this does not work anywmore.
Why can't Tomcat display the actual image paths. How can I get this to work again?
Here's my code:
<img src="C:/Users/684/Profile/images/_DSC0034.jpg" name="business_images" width="100" height="130"/>
PLS...HeLP!