全球axax覆盖当前的启动

时间:2018-04-20 14:23:28

标签: c# .net model-view-controller

我有一个现有的项目,我想添加MVC。由于这个项目需要一个API。我使用.net

中的web api框架

情况

我确实有一个在启动时运行的文件,但是axax正在覆盖它。

现在我想启动该项目,但它不再执行我的旧文件,这导致它只是启动web api需要的东西。

在初始化web api之后,是否可以让在应用程序中运行的启动项目的文件从全局axax开始?

Global.axax

protected void Application_Start(object sender, EventArgs e) 
{
    AreaRegistration.RegisterAllAreas();
    GlobalConfiguration.Configure(WebApiConfig.Register);
    FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    RouteConfig.RegisterRoutes(RouteTable.Routes);
}

1 个答案:

答案 0 :(得分:0)

您实际上可以自己更新 Global.asax ,并将您的代码包含在您调出的npm install ably块中。

google architecture components github thread

  

在ASP.NET应用程序中,通过调用来配置Web API   Application_Start方法中的GlobalConfiguration.Configure。该   Configure方法使用具有单个参数类型的委托   HttpConfiguration。在里面执行所有配置   委派。

Application_Start