ASP.NET无法加载类型'WebApplication1.Global'

时间:2013-07-15 15:18:15

标签: asp.net

我创建了一个项目(ASP.NET空Web应用程序)WebApplication1。 我也有Default.aspx / login.aspx / GoogleCallBack.aspx

当我运行应用程序时,错误显示

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 'WebApplication1.Global'.

Source Error: 


Line 1:  <%@ Application Codebehind="Global.asax.cs" Inherits="WebApplication1.Global" Language="C#" %>

Source File: /global.asax    Line: 1 

有谁知道如何修复它?谢谢

3 个答案:

答案 0 :(得分:2)

只需检查项目 - &gt; 属性 - &gt; 网络

Project Url ---点击(创建虚拟目录)链接 =&gt; 这将要求您映射到正确的文件夹位置说好。

当我们将项目移动到不同的目录并且IIS仍然引用旧目录时,会出现此问题。

答案 1 :(得分:0)

您的项目是否有“Global.asax.cs”?如果是的话,它会编译吗?

F5用于“调试”。这是关于构建解决方案。 Ctrl + Shift + B将是构建和查找编译器错误的热键组合。

答案 2 :(得分:0)

此主题与"Parser Error Message: Could not load type" in Global.asax重复。

投票最多的答案是由Facio Ratio提供:您的本地Web服务器运行的代码与您实际工作的代码不同。确保已停止调试,停止本地Web服务器,按照Peter的建议进行清理和重建,再次检查global.asax和global.asax.cs,然后重试。如果这不起作用,并且您正在使用本地IIS,请尝试在IIS管理器中删除该站点,然后手动重新创建。