vote up 8 vote down star
7

Since there are no header sections for user controls in asp.net, user controls have no way of knowing about stylesheet files. So css classes in the user controls are not recognized by visual studio and produces warnings. How can I make a user control know that it will relate to a css class, so if it is warning me about a non-existing css class, it means that the class really do not exist?

Edit: Or should I go for a different design like exposing css classes as properties like "HeaderStyle-CssClass" of GridView?

flag

72% accept rate

4 Answers

vote up 15 vote down check

Here's what I did:

<link rel="Stylesheet" type="text/css" href="Stylesheet.css" id="style" runat="server" visible="false" />

It fools Visual Studio into thinking you've added a stylesheet to the page but it doesn't get rendered.


Here's an even more concise way to do this with multiple references;

<% if (false) { %>
    <link rel="Stylesheet" type="text/css" href="Stylesheet.css" />
    <script type="text/javascript" src="js/jquery-1.2.6.js" />
<% } %>

As seen in this blog post from Phil Haack.

link|flag
Thanks a lot. It worked for me. – Cyril Gupta Nov 18 '08 at 9:58
vote up 0 vote down

If you are creating composite UserControl, then you can set the CSSClass property on the child controls..

If not, then you need to expose properties that are either of the Style type, or (as I often do) string properties that apply CSS at the render type (i.e. take them properties and add a style attribute to the HTML tags when rendering).

link|flag
vote up 0 vote down

@ALassek

Should not the "link" tag take place in the section? It is not supported in the user control markup context, so vs does not recognize the itself as a valid tag.

link|flag
vote up 0 vote down

@buyutec

No, it's not valid that's why it's visible="false" ;) But it does fool VS into recognizing your stylesheet. The problem is, CSS support in VS is just advanced enough to be really annoying. It's supposed to validate your css classes by your stylesheet, but it doesn't take things like user controls into account.

link|flag

Your Answer

Get an OpenID
or

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