2

I am little bit confused by the concept of cms in asp.net mvc application. The question is the following: How can I add controllers and some processing in the view page in the cms?

For instance in cms I create a page called "Account Details". For this logically I need a controller that would receive and process the request. The processing includes validation, db retrieval, etc. In the view part, I need a set of text boxes, etc. As I know, in cms I cannot create something like this. How to proceed in this way?

Markus
  • 3,547
  • 10
  • 39
  • 55

2 Answers2

2

Best to look at some existing MVC CMS projects and see how they do it. Here is a thread on SO that covers some of the open source MVC CMS's.

Building a CMS in ASP.NET MVC

Community
  • 1
  • 1
Wil
  • 2,328
  • 2
  • 20
  • 27
  • I could not find the answer. Therefore I am asking. – Markus Aug 15 '10 at 16:57
  • What I meant was to download one of those CMS's, then look at their code and see how they implement it. There won't be an answer to your specific question in that thread, just a list of free MVC bases CMS's which you can download and look at their code. – Wil Aug 27 '10 at 14:06
0

Check out the answers in this thread: Simple CMS for building a small company presentation-website.

Community
  • 1
  • 1
Kris van der Mast
  • 16,343
  • 8
  • 39
  • 61