views:

26

answers:

2

Django has the Flatpages app, which lets site admins change content on specific pages without changing code. Flatpage content i stored in the database, sort of like in a CMS. Flatpages are typically used for about-pages and such.

Are there any good equivalents for ASP.Net MVC? I.e., a convenient way to manage page-content persisted to a database.

+1  A: 

No.

Django seems closer to a CMS then "ASP.NET MVC" which is both a framework and just a general design pattern.

Noon Silk
A: 

Have a look at http://http://cmsmvc.codeplex.com, it allows you to create pages, and manage content on the page.

The solution is still in early stages, but it could help you out.

Dusty Roberts