In one of my recent projects I stumbled about one annoying behavior of ASP.Net Projects.
For some reasons I got the meaningful error message :
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 'WebService.Global'. |
Source Error: |
Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="WebService.Global" Language="C#" %> |
Source File: /global.asax Line: 1 |
In my case I solved the problem in changing the build output path from bin\x68\Debug to : bin
hope this helps anyone
have fun
Mario
(Visited 22,259 times, 1 visits today)
Output path was already bin\ when i tried your solution…
But i still get the error when building my web application.
Tim
Hi Tim,
Hmm, it is hard to tell without knowing you project architecture.
Have you checked:
Configured ASP.NET Version development – server
clear your /bin/debug
….. or you could check out this http://stackoverflow.com/questions/54001/could-not-load-type-xxx-global
Mario