I am having trouble displaying an background image in my ASP.NET MVC 2 application. Currently, In ~/Views/Shared/Site.master, I set my link to the style sheet to:
I would recommend to just drag and drop the image. Visual Studio will generate the code automatically for you,
body { background-image: url('../../Content/Images/dark123.jpg'); }
This URL code is auto-generated by Visual Studio you don't need to write the code manually.
Hope this will fix your issue.
Cheers!