Umbraco 6 brings new lots of improvements for developers, new datalayer, new API’s and complete support for Asp.net MVC 4. This means developers will have greater control, simpler code and higher productivity when developing with Umbraco. As the umbraco blog says, in Umbraco 6 we have: MVC support, Native Razor support Strongly typed views Building custom controllers Whole new shiny API Customizing routes. and many more.. Download the latest version 6.0.0. from http://umbraco.codeplex.com/releases . Create a blank MVC4 Application , and add the downloaded files to the newly created website. so that it will make the debugging easier. OR run NuGet Package Manager Command : PM> Install-Package UmbracoCms Now we can enable the mvc in ~/config/umbracoSettings.config <defaultRenderingEngine>Mvc</defaultRenderingEngine> by default it will be web forms change it to Mvc. Add another blank MVC4 project to the exist...
Another .NET Blog