Question

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,

Était-ce utile?

La solution

Try rebuilding the whole solution once. It might help.

Autres conseils

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 "

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top