我有一个想要放入布局的 css 文件。在我写的 web.config 文件中:
<location path="App_themes/default.css">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
我在 layout.cshtml 中写道:
<style>
h2 {
color:red;
}
@Styles.Render("~/App_themes/css")
</style>
但它不认识这条线:@styles.render 我该怎么办?