Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my .Net 2.0 Asp.net WebForms app, I have my Global.asax containing the following code:

<%@ Application CodeBehind="Global.asax.cs" Inherits="MyNamespace.Global" Language="C#" %>

However when I build I get an error stating-

Could not load type 'MyNamespace.Global'.

This seems to be because the MyNamespace namespace (defined in the code behind file Global.asax.cs) is not seen by the compiler in the Global.asax file (does not show in R# intellisence..). This turned out to be a very hard nut to crack... any help will be appreciated!

Note: The Global.asax and the Global.asax.cs are located in the same folder.

Note2: When compiling from the vs prompt with csc it compiles o.k.

share|improve this question
Do other pages in the app work? Sometimes this happens when the webserver is configured to run 1.1 but the app is compiled for 2.0 – Noon Silk Jan 5 '10 at 11:43
yes, 'Target Framework' is 2.0 – gkdm Jan 5 '10 at 11:52

11 Answers

up vote 40 down vote accepted

One situation I've encountered which caused this problem is when you specify the platform for a build through "Build Configuration". If you specify x86 as your build platform, visual studio will automatically assign bin/x86/Debug as your output directory for this project. This is perfectly valid for other project types, except for web applications where ASP.NET expects the assemblies to be output to the Bin folder. What I found in my situation was that they were being output to both (Bin and Bin/x86/Debug), with the exception that some of the dll's, and inexplicably the most important one being your web application dll, being missing from the Bin folder. This obviously caused a compilation problem and hence the "Could not load type Global" exception. Cleaning the solution and deleting the assemblies made no difference to subsequent builds. My solution was to just change the output path in project settings for the web app to Bin (rather than bin/x86/Debug).

share|improve this answer
Thank you! This was driving me crazy. – Bradley Uffner Apr 22 '12 at 3:44
3  
This is the correct answer. @gkdm, please mark it as one. – Hassan Gulzar Jun 6 '12 at 8:24
Also: Try closing and re-opening VS. If you are using built in debugging server then it might be running a different website. Opening/closing will re-register the localhost ports. – BradLaney Jul 21 '12 at 2:12

I am new to asp .net developement and I faced the similar problem and just now I updated the class as a partial class and worked fine.

public partial class Global : System.Web.HttpApplication

Best of luck :)

share|improve this answer

Have you changed the namespace of your project? I've seen this happen occasionally where I've changed the namespace in the Project Properties dialog but Visual Studio hasn't changed the namespace declaration in existing code files.

share|improve this answer
What do you think i should do? – gkdm Jan 5 '10 at 12:32
Check the namespace in your .cs file and make sure it's the same as the one declared in the asax file. My suspicion is they'll be different... – PhilPursglove Jan 5 '10 at 12:48
They are the same.. – gkdm Jan 5 '10 at 12:54
I'm not sure then. All I can suggest for right now is to rebuild and check the contents of namespaces in your assembly with ILDASM. – PhilPursglove Jan 5 '10 at 14:30
Thank you, this was the solution that helped me. I'll use Resharper to check for all namespaces in my solution. – Leonard May 14 at 11:39

Check the Build Action of Global.asax.cs. It should be set to Compile.

In Solution Explorer, Right-click Global.asax.cs and go to Properties. In the Properties pane, set the Build Action (while not debugging).

It seems that VS 2008 does not always add the .asax(.cs) files correctly by default.

share|improve this answer

If you rebuild or change a project and move over files from an old one, make sure to check the Inherit block of your global. In my case, the former project/solution was named intranet, and I had recreated it as Intranet, but when I moved over the files, it didn't like the lowercase (duh). Just do a general look-through of the names of the files.

share|improve this answer

In my situation it was related to Web Site/Web Application type of the project. We recently moved to MVC and had to change it to Web Application.

So, the solution was simple: select your web-site in Solution Explorer and remove it from the solution, then right click on the solution and select Add -> Existing Project (not Web Site), recompile the web-site.

share|improve this answer

I was befuddled by the same darn issue. I tried to remove and and the global.asax (closed VS2010 before adding). Cleaned the project/solution, checked for any changes in the web application configuration and other stuffs that had worked for other people here in SO threads. I finally cleaned the solution, deleted the bin/obj folders and stopped any running VS2010 development servers then I reverted all the changes back and found the application was running again. I redid the same things and now its working fine.

Happened again and this time this solution worked for me.

share|improve this answer

Old post but I go this error when trying to convert from website project to web application project.

Follow the instructions on this Link. I still got the global.asax error but all I did was delete it and re-add it back by right clicking on the project in visual studio and selecting add new item. Add the global.asax file and it worked.

share|improve this answer

I experienced a similar error when having a

<clear/>

tag as a child (the first child) of the

<assemblies>

tag in my Web.config. I had inserted the tags in my web.config in an attempt to prevent configuration inheritance in an application deployed under the 'Default Web Site' in IIS.

share|improve this answer

I had a similar issues situation where I was receiving this error on a project. Although problem depends

“Could not load type [Namespace].Global
Error in Line 1   etc etc

After spending some time I suspect a function with possible errors in a Class ..later commenting that specific function my problem get resolved.

I dont know why Visual Studio did't give me that specific error at debugging time. But this error might occure due to some errors in class file..

share|improve this answer

go to configuration Manager under properties for your solution. Then make sure all projects and getting built, and this won't be a problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.