惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog
L
LINUX DO - 最新话题
Google Online Security Blog
Google Online Security Blog
Schneier on Security
Schneier on Security
Spread Privacy
Spread Privacy
www.infosecurity-magazine.com
www.infosecurity-magazine.com
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
Microsoft Azure Blog
Microsoft Azure Blog
IT之家
IT之家
V
Vulnerabilities – Threatpost
K
Kaspersky official blog
S
Schneier on Security
B
Blog
The Register - Security
The Register - Security
SecWiki News
SecWiki News
Hacker News: Ask HN
Hacker News: Ask HN
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security Affairs
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
T
Tenable Blog
P
Proofpoint News Feed
Apple Machine Learning Research
Apple Machine Learning Research
D
DataBreaches.Net
S
Secure Thoughts
Security Latest
Security Latest
H
Heimdal Security Blog
The Hacker News
The Hacker News
O
OpenAI News
AWS News Blog
AWS News Blog
量子位
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
腾讯CDC
U
Unit 42
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
T
The Exploit Database - CXSecurity.com
NISL@THU
NISL@THU
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Hugging Face - Blog
Hugging Face - Blog
The Last Watchdog
The Last Watchdog
Recorded Future
Recorded Future
V2EX - 技术
V2EX - 技术
爱范儿
爱范儿
F
Full Disclosure

博客园 - Roland

几个基本的计算机概念 Silverlight 5几个不错的新特性 无光驱采用U盘安装完整版xp javascript 日期格式化(转) jQuery URL Parser 帮助 .net环境下的javascript引擎汇总 使用ANTLR进行命令行参数解析 使用VSTA定制二次开发IDE(一) 探讨Antlr中文文法与英文文法的差异 .net与java中关于访问性的差异 基础知识之vb.net的拷贝构造函数 垃圾回收浅谈 ASP.NET 页面对象模型[转自Msdnchina] dotnetnuke中皮肤管理小问题 DNN中令人困惑的用户管理机制 第一次学习dotnetnuke [转帖]怎样成为优秀的软件模型设计者? [转帖]论程序设计方法 让VFP回到旧时代
dotnetnuke小结
Roland · 2005-05-13 · via 博客园 - Roland

总体上说dotnetnuke是个相当不错的,甚至是最好的使用dotnet开发的开源portal,如果看看丛多使用dnn开发的网站,我想这样的评价毫不过分。

优点:

1、用一个页面处理所有请求,后台只有一个default.aspx在处理用户请求。

2、之前从未有过的、功能强大的皮肤管理功能。以前的换肤功能一般局限于css的运用,但dnn打破了这一局限,页面的布局及其内容均可随着皮肤而变化。而皮肤开发是如此简单,使用一个notepad就可以完成所有工作。

3、一个应用程序可以驻留多个portal. 如:crm.microsoft.com 与 finance.microsoft.com 使用同一个应用程序,而表现给用户的好像是也确实是两个完全不同功能的站点。所需做的工作仅仅是在超级用户管理中设置多个portal,并为每个portal配置相应的页面。

毫无疑问,在带来如上巨大好处的同时,dotnetnuke也暴露出来许多需要改进的缺陷(也许dotnetnuke开发组已经在进行了)。

缺陷:

1、糟糕的用户管理机制,据说为了兼容新的dotnet framework,dotnetnuke开发过程中采用dotnet 2.0 beta版中的membership管理功能。如我在另一篇文档《dnn中令人困惑的用户管理机制》中所述的,这是个糟糕的决定。不知是否可以实现类似于passport的认证机制,若能实现,我想应该会使dnn更强大。

2、无法支持多个数据库,如上面所见,若crm.microsoft.com与 finance.microsoft.com想采用不同的数据库(大前提:想用同一个应用程序),在目前的状况下无法剥离。

3、大量采用存储过程,每个module有一个dataprovider这样造成数据库平台的移植性很差。(关于这一点也许是个仁者见仁,智者见智的问题)