David Pfeffer
David Pfeffer

Reputation: 39872

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'd like to separate from the actual HTML views and move to more of a CMS system. This will allow the communications people in my company handle that portion of the content without requiring the web app to be redeployed.

I'm not looking for a full CMS system. I have specific places in the web app where I want to be able to include CMS based content, and I'd like to be able to host a blog on the CMS as well.

Has anyone seen anything similar to this before?

Upvotes: 7

Views: 4592

Answers (3)

Todd Smith
Todd Smith

Reputation: 17272

You can plug Umbraco v5 into an existing MVC site or an existing MVC site into Umbraco v5. Umbraco v5 is a complete rewrite currently based on MVC3.

Upvotes: 1

Nick Albrecht
Nick Albrecht

Reputation: 16938

If you really want a clear separation between the CMS and your site you could always use AJAX to pull the CMS content into your main app's web page and eliminate the server side mingling altogether. I've thought about doing something similar for an app I am working on.

Upvotes: -1

Ladislav Mrnka
Ladislav Mrnka

Reputation: 364389

I think you should check Orchard. It is open source CMS build on ASP.NET MVC 3 and default feature set also contains Blogs.

Upvotes: 5

Related Questions