Skip to main content

.NET Content Management Systems

This is really just a reference of .NET Content Management Systems (CMS) to work through and evaluate for various projects.

Of course client requirements need to be factored in, such as ease of use for the client as ultimately they will be the end user, along with development, customisation, both skinning and dev-wise, and how well supported the system is and the size of the community around it. There are loads out there but until a CMS reaches a certain critical mass, it's always a little bit uneasy using a less well tried and tested one for commercial and production purposes, or one that does not have a large user and dev community behind it.

If you know anymore or want to mention one, feel free to add a comment. Ta very much.


Non ASP.NET CMS

02/02/2011 - Update

Thanks to the anonymous commenter, Microsoft's Web Application Gallery with a list of CMS can be found here:


And also some other .NET CMS...


Comments

  1. I think that two additional ASP.NET CMSes deserve to be mentioned:
    MonoX - http://monox.mono-software.com
    Sitefinity - http://www.sitefinity.com/

    A comprehensive list of CMSes is available at Microsoft's Web App Gallery, http://www.microsoft.com/web/gallery/Categories.aspx?category=ContentMgmt&sorting=mostpopular.

    ReplyDelete
  2. Hi Anonymous,

    Thanks for the mentions and pointing out those CMS.

    Monox definitely looks interesting and worth a bit of a closer examination, especially with the social aspect of it.

    Sitefinity had an impressive client list so must be doing something right, but I think a free open source system could be the way forward for extendibility, cost and the kind of projects I'll be working on.

    Thanks for highlighting the Microsoft Web Gallery too. I'll add the links to my post.

    ReplyDelete

Post a Comment

Popular posts from this blog

Which blog engine?

So the time has come to move to a more advanced blog engine for my blog. blogger.com , Google's blogging service, has served me well. It's incredibly easy to use and to get started with, along with having some great features such as inbuilt stats; however now I need a few more advanced features and greater control over the blog. There's a vast array of blog engines out there, some free, some paid for, some hosted, some self-hosted, and picking which one is best or the right choice could be a little bit tricky. This article from Mashable lists most of the main options and bigger players -  http://mashable.com/2007/08/06/free-blog-hosts/ . There are a few parameters that I've kind of decided on Ease of installation/compatibility and support with web hosts Simple to use. I don't want to spend ages clicking around just to add a post or format it. Feature rich and well supported. Most blog engines should have a fairly standard set of features now such RSS/ATOM fe

Enable .NET 8 Preview in Visual Studio

Download the SDK using Download .NET 8.0 (Linux, macOS, and Windows) (microsoft.com)  and install it. To enable projects to target the .NET 8 preview framework, the preview option in Visual Studio needs to be enabled, otherwise the option to target .NET 8 will not be available as shown below when setting up a new project (or trying to upgrade an existing one). To allow .NET 8 Preview to be used as a target framework for projects, the preview option needs to be enabled in Visual Studio. Open Visual Studio and select "Continue without code" In Visual Studio, select Tools then Options In Options, under Environment, select Preview Features and enable Use previews of the .NET SDK.

SQL Server - Remove Non-Alphanumeric Characters from String

The following SQL function will remove and strip all non-alphanumeric characters from a string. CREATE FUNCTION [dbo].[fncRemoveNonAlphanumericChars](@Temp VarChar(1000)) RETURNS VarChar(1000) AS BEGIN WHILE PatIndex('%[^A-Za-z0-9]%', @Temp) > 0 SET @Temp = Stuff(@Temp, PatIndex('%[^A-Za-z0-9]%', @Temp), 1, '') RETURN @TEmp END Example: SELECT dbo.fncRemoveNonAlphanumericChars('abc...DEF,,,GHI(((123)))456jklmn') Result: abcDEFGHI123456jklmn