views:

32

answers:

3

When we publish web application, images store in physical folder are not displaying on actual runtime. How to solve this problem?

A: 

Check if HTTP requests are being sent for the images, and if they are sent to the correct address. If they are, check your web server logs to identify where those requests end up, and whether the files themselves are present in the right location with appropriate read permissions.

Victor Nicollet
A: 

You need to reference the images with a relative path rather than the fully qualified path.

<image src="../images/test.png" />
ChrisF
A: 

You can refer the images with Full HTTP Path or relative path or absolute path but they have to be correct to be able to show images.

Make sure that you do not have "file:\C:.....\test.png" as IMG SRC.

Naveen Bhalla