I got this div tag who's background image's being set in the CSS using some method like this..
Inline CSS:-
.id0, .mySprite:hover div
{
background-image: url(<%=GetImage()%>);
background-repeat: no-repeat;
width: 728px;
height: 243px;
}
HTML:-
<div class="id0"></div>
Now do I need to set runat=server in this div tag or not ? coz its not giving no error but was wondering may be I need to coz the image's path's being fetched from code behind...the image's not appearing in this user control