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,

Was it helpful?

Solution

Try rebuilding the whole solution once. It might help.

OTHER TIPS

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 "

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top