解析服务此请求所需的资源时发生错误。

时间:2015-06-18 07:14:00

标签: c# asp.net .net asp.net-mvc-4 asp.net-web-api

我有global.asax文件

  <%@ Application Codebehind="Global.asax.cs" Inherits="MSOL.ERP.Services.WebApiApplication" Language="C#" %>

和global.asax.cs

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


namespace ERPServices
 {
      public class WebApiApplication : System.Web.HttpApplication
       {
             protected void Application_Start()
                   {
                        GlobalConfiguration.Configure(WebApiConfig.Register);
                }
     }
 }
  

分析程序错误消息:无法加载类型   &#39; MSOL.ERP.Services.WebApiApplication&#39;

     

源文件:/global.asax Line:1

我应该怎么做才能摆脱它?

0 个答案:

没有答案