views:

14

answers:

0

I need to develop a template-based content management system. I don't care about what operating system will be used to run the CMS -- as my server is dedicated. It can be Windows, Linux, whatever. But, I need a recommendation for a platform/framework for this purpose. The CMS should be fast, and should support friendly urls.

Here's an example for a layout template:

<html>
<head>
    <title>[Title]</title>
</head>
<body>
    <img src="[ImageUrl]" alt="logo" />
    <div>
        [Content]
    </div>
</body>
</html>

I thought about the following platforms:

  • ASP.NET, with no Web Forms or ASP.NET MVC, just a Generic Handler and Url Routing for friendly urls. Database can be SQL Server. Will run on Windows.
  • Normal C# Windows Application, with an advanced embedded web server. Database can be SQL Server. Will run on Windows.
  • JSP with mod_rewrite for friendly urls. Database can be Orcale or MySQL. Will run on Linux.
  • Normal Java Application, with an advanced embedded web server. Database can be Orcale or MySQL. Will run on Linux.

Feel free to suggest me any other platforms and frameworks.

Thank you.