Building a CMS in ASP.NET MVC

前端 未结 9 1326
野的像风
野的像风 2020-12-07 14:14

I\'m curious to know if any basic CMS code has been written for ASP.NET MVC.

The reason I ask is, I\'m making a data-driven website for a client, and I\'ve already s

相关标签:
9条回答
  • 2020-12-07 14:14

    Heve a look at AtomicCms it's a free open source content management system based on ASP.NET MVC 1.0 http://atomiccms.codeplex.com

    0 讨论(0)
  • 2020-12-07 14:15

    Check for Orchard ;-) It is based on asp.net mvc.

    0 讨论(0)
  • 2020-12-07 14:18

    Also, kooboo is interesting http://www.kooboo.com

    0 讨论(0)
  • 2020-12-07 14:18

    If you are still looking, I've published my new open source CMS here:

    • MVCwCMS

    I'm actively working on it so I will push more updates soon.

    0 讨论(0)
  • 2020-12-07 14:18

    Here is also a quick summary as to how Telerik Sitefinity does it:

    http://www.sitefinity.com/mvc-cms

    in brief - allows you to plug in standard system.web.mvc.controller classes as widgets, lets you use the API for anything including model binding, standard Razor for a view engine etc.

    0 讨论(0)
  • 2020-12-07 14:30

    Piranha CMS is well suited to bolting on to an existing application. The author of it describes why and how here. To quote straight from that source:

    "Our focus is content management and to have a transparent and lightweight API for developers. Piranha CMS has almost no components or helpers that render any HTML at all, it simply provides a database, a manager interface and a routing mechanism for retrieving the correct data for the current request.

    In the case of you having an existing website you could actually bypass the routing completely, add one page at a time in the manager interface and then manually load the Page model in you existing page. This would allow you to keep your original application exactly the same but manage the content form the manager interface."

    0 讨论(0)
提交回复
热议问题