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.

link|improve this question

a CSS file is not observable by 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
@rpm: I did..could u plz check my code here : stackoverflow.com/questions/3975148/… – Serenity Oct 23 '10 at 8:23
feedback

3 Answers

up vote 3 down vote accepted

Well,

  • The "Runat=Server" is not needed at all. The CSS is loaded/associated on the client (in the brwoser) anyway.
  • Sorry, dude, but .CSS files are not evaluated by ASP.NET - so basically, the "url" that the browser gets is <%=GetImage()%>, which obviously the browser can not do anything with.

Result: Does not work. Can not work.

link|improve this answer
how come the value returned by the method's is being shown in the CSS then ? – Serenity Oct 23 '10 at 8:01
changed that in the CSS and have overridden the background-image property in that div as url(<%=GetImage()%>); ...the image path appears in the page source in the div..but cant see image..runat=server's making no diff – Serenity Oct 23 '10 at 8:04
+1 for targeted bluntness. – RPM1984 Oct 23 '10 at 8:10
Hold on, is this inline CSS, or an external CSS file? – RPM1984 Oct 23 '10 at 8:11
inline css...... – Serenity Oct 23 '10 at 8:14
show 3 more comments
feedback

Why do you need the server to generate the path? The image path should be relative to the css file so if your css is in project/css/style.css and image is in project/images/myimage.jpg use

background-image: url(../images/myimage.jpg);

Also, use firebug to check what's really being set as the background image. You can also try

background-image: url(../images/myimage.jpg) !important;
link|improve this answer
Could u plz check my code here ?? have made changes...stackoverflow.com/questions/3975148/… – Serenity Oct 23 '10 at 8:24
Image just won't display! – Serenity Oct 23 '10 at 8:24
feedback

You are generating the css from server-side code? Or is a simple .css file? If you have .css file the code: background-image: url(<%=GetImage()%>); does not work.

And then, the css rule for div with id id0, you must define it with # not dot (#id0 not .id0)

link|improve this answer
id0 is a class..the div's class is set to id0 – Serenity Oct 23 '10 at 8:05
won't it work if he adds runat="server" to the css file? – BennyM Oct 23 '10 at 8:05
@Benny :: just tried that..not working..cant see no image still – Serenity Oct 23 '10 at 8:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.