1。[来源:Scott Guthrie] ASP.NET 2.0 Providers的源码供下载了,很多人都报道这个消息了,这绝对是个好消息
如果你对Provider模型不熟,可以参考MSDN上的系列文章
Microsoft ASP.NET 2.0 Providers: Introduction
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/asp2prvdr01.asp
Jeff Prosise写的ASP.NET2.0 Provider Model: Introduction to the Provider Model
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/aspnetprovmod_intro.asp
2。Atlas开发组的Bertrand Le Roy对Atlas浏览器兼容层的解释
http://weblogs.asp.net/bleroy/archive/2006/04/13/442815.aspx
“。。。一般来说,使Javascript类库跨浏览器兼容有三种方式:
- 每次调用时你都检查浏览器是否支持某些功能。这么做的话,所有新的编码都要考虑所有的浏览器,添加一个新的浏览器需要修改所有的编码库
- 你写一个抽象层,建立另一套的API来抽象每个浏览器的具体API,跟其他两种方式相比,这种做法并不标准,因为你实际上是在现有的标准API和浏览器开发商自己的API之上又建立了一套新的非标准API。而且,这也使得编码调用路径更长了,因为每次API调用需要经过额外的函数调用,而且每次调用还必须检测浏览器是否支持
- Atlas的做法,你扩展其他的浏览器使得所有的浏览器都拥有一致的API,这样,编码调用路径是最直接的,而且兼容层生成时,只要做一次浏览器检测。这个做法另外的好处是,你每次添加一个新的浏览器,只要写它的兼容层就可以了,而不需要碰实际使用的Javascript类库
。。。”
3。 袁峰大侠的Windows Graphics Programming经典著作重印版出来了
http://blogs.msdn.com/fyuan/archive/2006/04/15/576934.aspx
4。 Mikhail Arkhipov 开发了一个能检查拼法的Visual Studio add-on
Spell Checker for HTML and ASP.NET pages
http://blogs.msdn.com/mikhailarkhipov/archive/2006/04/17/577471.aspx
5。 英国的Phil Winstanley的新技术列单,要学的东西太多了,真是学不过来
New Technology Shopping List
http://weblogs.asp.net/Plip/archive/2006/04/16/443059.aspx
.NET 点滴
1。 [来源:Jesús Rodríguez] W3C发布针对XMLHttpRequest的工作草案
The XMLHttpRequest Object
http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/
2。 [来源:Federal Developer Weblog] Internet Explorer Developer Toolbar
该套工具能帮助开发人员很快地生成网页,理解和排除网 …
read more.NET 点滴
1。根据Scott Guthrie,MySpace.com每天的Page View量高达15亿,他们现在用的是ASP.NET 2.0和IIS6。移植到ASP.NET 2.0后,服务器的CPU平均利用率从85%下降到27%。
http://weblogs.asp.net/scottgu/archive/2006/03/25/441074.aspx …
read more第16届Jolt Product Excellence奖
在第16届Jolt Product Excellence奖中,微软产品获的奖:
1。企业项目管理类别,Visual Studio Team System 2005获得Productivity奖(该类别的Jolt奖得主为Welcom的WelcomRisk 2.6)
2。数据库引擎和数据工具类别,SQL Server 2005获得Jolt 奖 …
【大惊小怪】 HtmlControl之Site属性
这几天在翻看《Professional ASP.NET 2.0》一书,在第110页上看到列出的HtmlControl的Site属性
Site
Provides information about the Web site for which the server control belongs.
!&\$@#*\^@%\$@!??有点发晕,查看Visual Studio 2005的文档,
Site
Gets information about the container that hosts the current control when …
read more又一个里程碑,又见无数不眠夜
LINQ非常酷
读完文档,I am in awe,虽然感觉这玩意带来的编程模型的变化会很大
对DLINQ的基于属性的做法
[Table(Name="Customers")]
public class Customer
{
[Column(Id=true)]
public string CustomerID;
[Column]
public string City;
}
不是很认 …
read moreNew features in C# 3.0
Anders Hejlsberg接受Channel 9的采访,谈到如何把数据编程与对象编程统一起来
也参考
上面有 LINQ的技术预览,包括示范程序,白皮书文档,hands-on labs以及为使用LINQ技术编程所需的编译器支持,可以在Visual Studio 2005 …
read moreVisual Studio项目之大小
[来源:Mike Stall] ...超过4千3百万行编码,超过30个开发组,700个开发人员,每天要生成100种不同的build...
"...When we ship an official release like a Beta or RTM (release to market) we lock down and are code complete several months before the actual release date to allow for a final …
read more