How to Integrate Orchard CMS with Asp.Net MVCForum Jignasha Rathod October 11, 2014 2 min read How to Integrate Orchard CMS with Asp.Net MVCForumOrchard is a Content Management System (CMS) for managing dynamic content. It is very useful for making a dynamic site, dynamic forms etc. We had implemented site in Orchard. We wanted to implement MVCForum in the orchard site for posts, comments, and discussions. So we had created child application in our original site but when I tried to run the child application it was giving an error of razor views.Finally, we found that the problem occurred because of Web.Config of Main ( i.e. Orchard ) project.When we add MVCForum as a child application it will also run The Web.Config of main (i.e. Orchard ) project. Orchard uses a different version of razor views DLL than MVCForum. To overcome this issue, we have to set the Location Path in the main (i.e. Orchard ) project Web.Config which specifies not to inherit configurations in child application ( i.e. MVCForum ). So the conflict between the different versions of razor views DLL will be resolved and your child application will run successfully!!The following code shows how to set the location Path for the following sections in the Main project Web.Config.Also Read: Top 5 Open Source Content Management Systems using ( Asp.net core MVC ) [html] <location path=”.” inheritInChildApplications=”false”> <system.web.webPages.razor> </system.web.webPages.razor> <system.web> </system.web> <system.webServer> </system.webServer> </location>[/html] I hope that this article will make your orchard integration as easy as. if you are finding any difficulties with your integration then your can leave a comment below.