不是很有经验,但让我们试一试!请原谅。
我正在创建一个Web应用程序,然后在project.csproj上单击“Clean”。不知道我做了什么我在IIS上重新启动了我的Web应用程序,我收到了一条消息说这个。
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 'DocPortal_S1.Global'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="DocPortal_S1.Global" Language="C#" %>
当返回Localhost:端口我仍然得到这个。
干净的是什么,是否有可能修复它?
答案 0 :(得分:0)
清除清除所选项目/解决方案的中间文件和输出文件。它不会编辑您的实际项目代码文件。
请参阅:http://msdn.microsoft.com/en-us/library/ms171480.aspx
您的特定错误表明Global.asax文件正在查看Doc.Jat_S1.Global类的Global.asax.cs文件,但它无法找到该对象。将该类恢复到您的代码隐藏/ global.asax中,您应该很高兴。
不确定为什么会被删除。如果我为项目更改了默认名称空间或者重新构建名称空间,那么我遇到了类似的问题。