TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Popular .NET Web Content Management Systems (CMS) - Open Source

18 点作者 bigstorm将近 15 年前

7 条评论

megamark16将近 15 年前
We're a Python/Django shop with a few ASP.NET/C# projects every now and again. We use Django CMS for many of our clients, but we've used Umbraco for a few. It was aweful, the interface is fine for editing content, but building and templating a whole site through a web based client is painful.<p>Trying to build extensions was daunting, especially with the free version, it seems like they have a Commercial version with a few more developer bells and whistles.<p>Version control was also a pain, because everything is stored in the database, including templates and styling, so you can't really version control that with an outside VCS (we use Git). And what you CAN put under version control is half binary files anyway, hello conflictville, population you and a bunch of binary conflicts every time you sync.<p>Overall, I'm in love with Django CMS, and .NET is an old lover whom I don't really want to talk to any more, but she's still in my phone so I know who's calling when she drunk dials me.
评论 #1436210 未加载
评论 #1435770 未加载
euroclydon将近 15 年前
If you're a developer, using a CMS quickly becomes grating enough, but for me, using a .NET CMS eventually became unbearable.<p>After I had a few of these up and running for a couple of years, having implemented custom modules to collect form data, and even going through the trouble to pack the modules up all nice and kosher, when it came time to make a minor change to one of those modules, and I had to find a correct setup of Visual Studio, with all the dependencies, and then compile and deploy the module, just to make a small change, I said: never again do I want to write websites in a compiled language!
评论 #1435754 未加载
评论 #1436148 未加载
gkefalas将近 15 年前
I haven't found a single .NET CMS that doesn't drive me completely batty. I think most CMS tools, including non-.NET ones, break down when they start trying to be able to do all things for all people. It's debatable if any are able to pull this off (though admittedly I'm not up on current CMS tools to know if that world has improved.)<p>Because of that, I've been rolling my own basic backend for my own personal use on projects for myself, friends &#38; family for about a half-year now; the ultimate goal being dead-simple templating using standard HTML pages, fast &#38; secure data &#38; code, and ease of extensibility. It does what it needs to. But, because it's domain-specific, I'm not trying to make it a general-purpose "CMS," so I currently don't have to worry about stuff like registration/authentication, comments, etc. I would never release it in its current state, though, and likewise I'd probably never plug a bunch of other junky code into it, expose a ton of dubiously-designed interfaces &#38; reflection as "extensibility," require master pages (ew) or some custom markup language (ew x 2) to make templates, and call it a full CMS.
GiraffeNecktie将近 15 年前
Is there a reason to use a .NET CMS other than the obvious (i.e. it's a .NET shop)?
评论 #1435555 未加载
评论 #1436173 未加载
Gobiner将近 15 年前
<i>DotNetNuke, also known as DNN, is the ideal platform for building professional websites with dynamic content and interactive features.</i><p>This made me laugh. My coworkers that have worked with DNN have many horror stories. I've never heard from a developer that used DNN and liked it. Given the superficiality of the descriptions, I assume all the info was copy/pasted from the marketing material for each project.
评论 #1436259 未加载
Aaronontheweb将近 15 年前
BlogEngine.NET is a wonderful blog platform (I consider that a CMS) that's easy to extend and the codebase isn't so massive that you can learn it quickly. Some of these, like DNN, are nightmares.
jf将近 15 年前
People interested in .NET Content Management Systems may want to watch the Orchard Project: <a href="http://orchard.codeplex.com/" rel="nofollow">http://orchard.codeplex.com/</a>