我有一个用 MVC2 / ASPX / c# 开发的项目。我将它更新为 MVC,它运行良好。当我发布它时才注意到,使用 System.Web.Helpers 得到问题;并手动复制。
由于应用程序非常复杂,我在新项目中开发了额外的组件。我使用了 MVC3 ASPX 视图,在我看来我使用:
var series = <%= Html.Raw(Json.Encode(ViewBag.Series)) %>;
它工作得很好,当我在旧应用程序中集成控制器、视图和母版页时,我收到此错误:
The name 'Json' does not exist in the current context
将不胜感激您的建议。