سؤال

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