asp.net mvc - Umbraco 6 with MVC 4 -


we want create mvc4 web application implementing business workflows has implemented using mvc4 framework. web aplication shall have huge documentation part shall handled best using cms, umbraco.

so, have chosen umbraco infrastructure, implemented cms pages, , want add application logic inside.

if extend rendermvccontroller, face limitations have stick umbraco libraries.

is possible use raw mvc4 engine, basic controller class, , standard view pages not inherit else side-by-side umbraco 6 cms engine?

yes, can pretty it, long you're on version 6.1+ think.

this umbraco page might help, has details of overriding custom controller in global.asax.

public class myapplication : umbracoapplication  {     protected override void onapplicationstarting(object sender, eventargs e)     {         defaultrendermvccontrollerresolver.current.setdefaultcontrollertype(typeof(mycustomumbracocontroller));         base.onapplicationstarting(sender, e);     }  } 

Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -