最佳答案
在我的 mvc 应用程序中,In _ 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
。
我已经将程序集作为 using System.Web.Optimization;
添加到引用和 Bundle 配置中
@ style也是这样。 我该怎么办?