gpt4 book ai didi

c# - MVC4 中 Global.asax.cs 页面中的问题

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

我的 ASP.NET MVC 4 项目,我的 Global.asax.cs 页面显示错误

 WebApiConfig.Register(GlobalConfiguration.Configuration);

The name 'GlobalConfiguration' does not exist in the current context

我已经做了很多 Controller 和 View 以及所有...我怎样才能解决这个问题并恢复我的项目?

这是我的上下文代码的其余部分

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;

namespace .....
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();

WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
}
}

最佳答案

确保您引用了程序集 System.Web.Http.WebHost.dll。这是 GlobalConfiguration 所在的位置。

关于c# - MVC4 中 Global.asax.cs 页面中的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21402081/

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