Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

could not load type <MyNameSpace>.Global

Tags:

c#

asp.net

I'm currently working on an ASP.NET 4.0 site using a project-less solution.

By default the global.asax does not have a code-behind file, but after I changed it to

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

And created an empty Global.asax.cs with the same namespace / class name I'm getting this error at compile time

Error 1 Could not load type 'MyNamespace.Global'. C:\Projects\RiskOptix\Code\RiskOptix.WebApplication\RiskOptix.WebApp\Global.asax 1

I've already tried cleaning out my entire bin folder but to no avail - this is extremely infuriating.

like image 943
manning18 Avatar asked Aug 17 '11 15:08

manning18


2 Answers

This question has already been asked. Check out this answer. Web site projects work differently from web application projects. Website type projects do not have CodeBehind files instead have CodeFile.

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

CodeBehind = Needs to be compiled ( asp.net 1.1 model) and compiled binary is placed in the bin folder of the website. You need to do a compile in visual studio before you deploy. Good model when you do not want the source code to be viewable as plain text ... for example when delivering to a customer who you not have obligation to provide code.

CodeFile = You provide the source file with the solution for deployment. ASP.NET 2.0 runtime compiles the code when needed. The compiled files are at Microsfot.NET[.NET version]\Temporary ASP.NET Files.

like image 154
coder net Avatar answered Sep 18 '22 12:09

coder net


I was not able to run my MVC Web application. It was giving Could not load type <application namespace.Classname> error in Global.asax

I went to Project Properties and set the build>output folder to bin/ which was bin/Debug. Ran it once. It ran fine. And then again set the output folder to bin/Debug. Working fine now.

like image 26
Manik Mittal Avatar answered Sep 17 '22 12:09

Manik Mittal