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 it's 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.
observableby ASP.NET. Rethink your solution. Why not set the background image for the element from the code-behind? Or hard-code the URL in the CSS. – RPM1984 Oct 23 '10 at 8:13