i have a css file that I want to put in my layout. in the web.config file I wrote:
<location path="App_themes/default.css">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
and in the layout.cshtml I wrote:
<style>
h2 {
color:red;
}
@Styles.Render("~/App_themes/css")
</style>
but it doesn't recognize the line: @styles.render what should I do?