Pergunta

i ma running my Asp.net solution but getting error:

<%@ Application Codebehind="Global.asax.cs" Inherits="TCSCloud.WebApp.MvcApplication " Language="C#" %>

everything is fine, it's been imported, went through almost every stack overflow issue regarding this but didn't fix anything. help plz

My solution contains 13 projects,

Foi útil?

Solução

Try rebuilding the whole solution once. It might help.

Outras dicas

Can you confirm that the Inherits="TCSCloud.WebApp.MvcApplication " matches the namesspace and class name in your Global.asax.cs file.

So, you should have something like this in your Global.asax.cs file:

namespace TCSCloud.WebApp
{
    public class MvcApplication
    {
    }
}

Also, you have a space there at the end of your Inherits="TCSCloud.WebApp.MvcApplication "

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top