gpt4 book ai didi

c# - 名称 'Scripts' 在 MVC 的当前上下文中不存在

转载 作者:IT王子 更新时间:2023-10-29 03:46:22 25 4
gpt4 key购买 nike

在我的 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 也会发生这种情况......我该怎么办?

最佳答案

确保您的 ~/Views/Web.Config 添加了 System.Web.Optimization 命名空间:

<system.web.webPages.razor>
<pages>
<namespaces>
<add namespace="System.Web.Optimization"/>
</namespaces>
</pages>
</system.web.webPages.razor>

关于c# - 名称 'Scripts' 在 MVC 的当前上下文中不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23534516/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com