문제

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,

도움이 되었습니까?

해결책

Try rebuilding the whole solution once. It might help.

다른 팁

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 "

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top