I am trying to figure out how to get Intellisense for CSS to render when in a partial view or a content page. Of course I don't want it to render a runtime, as the css comes from the masterpage.

I found this trick....

<%if (false) {%> <link rel="Stylesheet" href="styles.css"/> <%}%>

But is there a better option?

link|improve this question

feedback

1 Answer

Same idea, but no code nuggets and language independent:

<link rel="Stylesheet" href="styles.css" runat="server" visible="false" />

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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