I converted my MVC – 3 project to MVC – 4 project by following this tutorial. I just created new MVC – 4 project , copy all existing controllers, views, models, contents from MVC – 3 project to newly created project. Then completed all manually conversion steps from the tutorial. Now after doing all this when i run MVC – 4 project i got this following exception page :
Can anybody please explain me how to solve this issue?

The class name in the
inheritsattribute in theGlobal.asax(right click view markup) should match the class name and namespace in theGlobal.asax.csRight now you have
But I guess in your
Global.asax.csyou have your MvcApplication in different namespace:So just make sure that you use the correct MvcApplication namespace in your
Inherits