user48094
user48094

Reputation: 10641

unable to display image in client machine

I have a web application. I have inserted an image into my web application homepage using html tags.It is working very well in server machine. But when any client is accessing my web page everything that is present in the homepage of the web application is displayed except the image. Instead of image cross mark is displayed in client machine.

Can anybody help me how to display the image in client machine.

Upvotes: 0

Views: 270

Answers (1)

John MacIntyre
John MacIntyre

Reputation: 13021

Check the path in the src attribute in the img tag. Make sure it's a relative path, and not hard coded to path on your hard drive.

Upvotes: 1

Related Questions