I am using asp.net MVC. In my application,To set the background image,I have implemented like,
background-image:url("../../Images/Home/Logo.png");
When I debug this,background image is displaying ,when I deploy it to the server,It is not displaying . If I implement like
background-image:url("Images/Home/Logo.png");
background-image is displaying after deploying in the server but in my local it is not displaying,what is the solution for this?