what is the best location for image folder in asp.net mvc C# project so that it is easily access in all css scripts. Currently I've used ....
- Image Path:Content/Images
css file Path:**Content/dist/css
<img src="@Url.Content("../Content/Images/logo.png")>worked well for all view Pages. Also
background-image:url(../Content/Images/logo.png);worked well for Home/Index page. BUT when i call other pages .....
background-image:url(../Content/Images/logo.png);not Worked at all !! Also
background-image: url('data:image/jpeg;base64........)worked on all Pages