Integrate CMS into ASP.NET MVC web application?

I've been building an ASP.NET MVC 3 web application for about 11 months now, and I have some content-based components that I would like to separate from the actual HTML views and move on to most of the CMS system. This will allow people in my company to process this piece of content without requiring redeployment of the web application.

I am not looking for a complete CMS system. I have certain places in a web application where I want to include CMS-based content, and I would like to be able to host a blog on CMS.

Has anyone seen something like this before?

+7
source share
3 answers

I think you should check out Orchard . This is an open source CMS built on ASP.NET MVC 3, and the default feature set also contains blogs.

+4
source

You can connect Umbraco v5 to an existing MVC site or to an existing MVC site in Umbraco v5. Umbraco v5 is a complete redesign based on MVC3.

+1
source

If you really need a clear separation between the CMS and your website, you can always use AJAX to pull the CMS content to your main application web page and completely eliminate server-side bias. I was thinking of doing something similar for the application I'm working on.

-one
source

All Articles