I have this .gif on my page. Works fine on my local server. When I access my computer from another computer the .gif does not display?
ImageUrl="file:///C:\Inetpub\wwwroot\pbss\Interstate.gif
Printable View
I have this .gif on my page. Works fine on my local server. When I access my computer from another computer the .gif does not display?
ImageUrl="file:///C:\Inetpub\wwwroot\pbss\Interstate.gif
Is this a serious post?
Since I've not known you to make irrelevant posts, Ill assume so.
If you have an image tag:
<img src="file:///c:/anything">
Then when the browser receives the page, it is going to look for a File on the C Drive of the computer that your end user is on.
It would never be looking at your computer.
You need to change the URL tag to be relative:
ImageUrl="/pbss/Interstate.gif"
got it working...thanks