2010年7月1日

HTTP请求的处理

摘要: 当客户端向web服务器请求一个*.aspx的页面文件时,这个http请求被inetinfo.exe进程截获(www服务),它判断文件后缀之后,把这个请求转交给ASPNET_ISAPI.DLL(位于<.NET FrameworkDir>\aspnet_isapi.dll),而ASPNET_ISAPI.DLL则会通过一个Http PipeLine的管道(HTTP管道流过的是Http Con... 阅读全文
posted @ 2010-07-01 10:54 mint5919 阅读(285) 评论(0) 推荐(0)
2010年4月19日

单件模式笔记

摘要: 单件模式:私有构造函数+静态变量+静态方法 class Singleton { private static Singleton uniqueInstance; 静态实例 private Singleton() { } 私有构造函数 public static Singleton GetInstance() { if (uniqueInstance == null) { return new Si... 阅读全文
posted @ 2010-04-19 18:33 mint5919 阅读(124) 评论(0) 推荐(0)
2010年4月9日

Memo

摘要: IsNull(column name,replace value)e.g: IsNull(Age,0)If age is null then replace null to 0 阅读全文
posted @ 2010-04-09 18:00 mint5919 阅读(84) 评论(0) 推荐(0)
2010年4月6日

hello world

摘要: 第一个博客。留下些生活,工作中的脚印。 阅读全文
posted @ 2010-04-06 18:56 mint5919 阅读(93) 评论(0) 推荐(0)