I added this code in my ascx file http://jsfiddle.net/xkRcN/8/ ..When it was aspx file..the image(location is "Images" folder in my project now..was flickr earlier) would display alright..but when I made this page into a user control and added it in my webform, the image's vanished..I have tried changing the path many times but its not working..The user control is inside of "usercontrols" named folder..image inside of "images" named folder in my page and my aspx page's at root level only..so I changed the image path in the css of usercontrol as follows:-
background-image: url(../images/myImage.jpg);
even tried
background-image: url(../../images/myImage.jpg);
and this
background-image: url(~/images/myImage.jpg);
but the Sprite image just won't display
Everything else in the usercontrol is getting displayed well ..just that image's missing..whats wrong?