What is the correct path please to reference an image that is held in my Images folder in VS 2013? This does not work:
or this:
or this:
The Web page that should display the photo is in the default Account folder at the top of Solution Explorer.
This, however,
does work where the Web page is not in its own folder.
Thank you.
Code:
<img src="Images/image-slider-2.jpg" width="450" height="450" alt="" />
Code:
<img src="/Images/image-slider-1.jpg" width="450" height="450" alt="" />
Code:
<img src="~/Images/image-slider-1.jpg" width="450" height="450" alt="" />
This, however,
Code:
<img src="/Images/image-slider-1.jpg" width="450" height="450" alt="" />
Thank you.