I\'m new in asp.net. And I am having trouble setting my background image. Here\'s the master page source:
<%@ Master Language=\"C#\" AutoEventWireup=\"true\"
it is getting confuse, because of your src, it finding it in current_folder+src, but your image folder is in root folder, for that to reach root_folder+src you have to prefix your source with ~/
src
current_folder+src
root_folder+src
~/
background-image:url('~/images/background.jpg');