在我的mvc应用程序中,_Layout.cshtml中的代码如下...
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
但问题是它说The name 'Scripts' does not exists in the current context
。
我已经将程序集添加到引用和Bundle配置中,如下所示: using System.Web.Optimization;
@styles也会发生这种情况。我该怎么办?