I have same images in Content and Views folders. I am trying to display images as below:
<img src="~/Content/Images/download.png" alt="Content folder" />
<br />
<br />
<img src="~/Views/Home/download.png" alt="Views folder" />
<br />
The image in Content folder displays successfully but the one in Views folder doesn't display and gives below error:
Failed to load resource: the server responded with a status of 404 (Not Found)
But actually, the resource is there. Here are my folders:
Could you please tell me which point I am doing wrong? I am using MVC 5 with razor engine and Visual Studio 2015 community edition.



