I am using the css property:
background-image: url(/Content/Images/background.jpg);
However when deployed to Windows Azure, it comes up with the file not found error because it is trying to retrieve the image from:
...azurewebsites.net/bundles/Content/Images/background.jpg
I have tried:
'~/', '../', 'Content/', '/Content' & even the full path.
when I simply go to the url of the image in the web browser, it loads the image so I know it is there.
What is the best way to remove or account for this problem?
Thanks.