且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我已经开发了一个Asp.Net Website.Now如何在我现有的Asp.Net C#网站上添加Cms

更新时间:2023-11-13 16:30:16

请阅读我对这个问题的评论,对于CMS ASP.NET中的选项你可以尝试 Umbraco [ ^ ],这是一个开源项目,由ASP.NET团队自己使用。您将能够找到有关使用CMS的大量资源和教程。



您也可以创建自己的CMS;请记住,CMS只是一个允许您管理内容的系统。您知道您的内容是什么,并且您知道如何管理它们。只需编写后端即可完成。 :)



有关其他资源,您可以阅读CodeProject上的这篇文章:前5个基于.NET的CMS(内容管理系统) [ ^ ]
Please read my comment to the question and, for CMS options in ASP.NET you can try Umbraco[^], which is an open-source project and is being used by ASP.NET team itself. You would be able to find a lot of resources and tutorials on working with the CMS.

You can also create your own CMS; remember, a CMS is just a system that allows you to manage your content. You know what your content is and you do know how to manage them. Just write the back-end and you are done. :)

For additional resources, you can read this article on CodeProject: Top 5 .NET Based CMS (Content Management System)[^]


看看umbraco或果园。但是,由于CMS控制底层框架,因此无法将CMS复制添加到现有站点。我要做的是根据您选择的CMS启动一个新项目,然后将您的功能移植到它。
Have a look at umbraco or orchard. However you can't retro-add a CMS to an existing site as the CMS controls the underlying framework. What I would do is start a new project based on the CMS of your choice then port your functionality across to it.