Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an asp.net mvc website product that needs to allow customers to add their own content pages, outside of the project.

So the product will deliver a core set of pages (views) all using a master page. The clients can add their own web pages (.aspx) which I was hoping they could inherit from the MVC masterpage. Obviously there is no view context, so all of my html helpers, and Url.* calls fail.

What would be the best strategy to allow someone to add web pages into an mvc product, re-using as much of the structure as possible.

share|improve this question
Can the client add an arbitrary number of pages? Or is there a set number of pages they are allowed to edit? – russau Jul 6 '09 at 22:59
They can add as many as they want. The sitemap xml file will allow them to integrate these into the site seamlessly. – gav Jul 6 '09 at 23:04

2 Answers

What you are describing is a Content Management System. There are a number of those available for MVC. One of them is N2. N2 is a lightweight CMS framework to help you build web sites that anyone can update:

http://n2cms.com/

Another one is Oxite. Oxite is a pure MVC CMS:

http://www.codeplex.com/oxite

These are open-source, so you can break them open and see how they did it.

share|improve this answer

Scott Hanselman's blog post on how to mix together these technologies is required reading for anyone wanting to use ASP.NET MVC and classic ASP.NET together.

Plug-In Hybrids: ASP.NET WebForms and ASP.MVC and ASP.NET Dynamic Data Side By Side

share|improve this answer
Yes, but this is more side-by-side not integration. I want to be able to use my MVC masterpage html from my web forms. – gav Jul 6 '09 at 22:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.