最近我们已将项目移至网络应用程序,一切都很好但突然间我不知道我何时尝试调试我的应用程序,它向我显示以下错误:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'NavigateWebApp.Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="NavigateWebApp.Global" Language="C#" %>
Source File: /global.asax Line: 1
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.4971; ASP.NET Version:2.0.50727.4971
我确信没有构建错误。
答案 0 :(得分:0)
这可能是由于您的'NavigateWebApp.Global'
类/命名空间在您指定的位置不可用。
检查您定义的位置,并确保Global.asax
页面可以访问它。
答案 1 :(得分:0)
问题的根源是您的Global.asax
文件引用了一个不再存在的类(或至少在您指定的位置)。简单的解决方法是使用Inherits
类名称的完全限定路径更新Global.asax
属性(您可以在Global.asax.cs
文件中找到)。