I would like to store my images in a directory, say
C:/Photos
But to display these images in my application using the img element, I have to use a pathname that is relative to my project directory. For example
<img src="@Url.Content("~/photos/image.jpg")">
Instead of doing that, is there a way I can use an absolute pathname instead, or is it impossible?