CoOLeR

CoOLeR

导航

2009年4月10日

摘要: HttpModule 示例 —— 一点一点学ASP.NET 文野:2006年8月11日星期五 概述 从前面的章节我们知道HTTP Handler提供了类似于ISAPI Server Extention的功能,而HttpModule实现了类似于ISAPI Filter的功能。使用自定义的Handler会覆盖系统默认的Handler,而Module是可以多个同时存在的。 HttpHandle... 阅读全文

posted @ 2009-04-10 10:56 ImCoOLeR 阅读(539) 评论(0) 推荐(0) 编辑

2009年4月9日

摘要: 当一个HTTP请求到达HttpModule时,整个ASP.NET Framework系统还并没有对这个HTTP请求做任何处理,也就是说此时对于HTTP请求来讲,HttpModule是一个HTTP请求的“必经之路”,所以可以在这个HTTP请求传递到真正的请求处理中心(HttpHandler)之前附加一些需要的信息在这个HTTP请求信息之上,或者针对截获的这个HTTP请求信息作一些额外的工作,或者在某... 阅读全文

posted @ 2009-04-09 17:30 ImCoOLeR 阅读(133) 评论(0) 推荐(0) 编辑

2009年4月8日

摘要: The string type represents a string of Unicode characters. string is an alias for System.String in the .NET Framework. Although string is a reference type, the equality operators (== and !=) are def... 阅读全文

posted @ 2009-04-08 09:34 ImCoOLeR 阅读(228) 评论(0) 推荐(0) 编辑

2009年4月3日

摘要: ASP.NET 2.0运行时简要分析(dudu) 概述: 本文基于ASP.NET 2.0的源代码,对ASP.NET 2.0运行时进行了简要的分析,希望能帮助你理解ASP.NET 2.0中请求处理过程及页面编译模型。 关键字: ASP.NET 2.0运行时,原理,请求处理,页面编译,ASP.NET 2.0 HTTP Runtime 主要类: System.Web.Ht... 阅读全文

posted @ 2009-04-03 17:32 ImCoOLeR 阅读(122) 评论(0) 推荐(0) 编辑

摘要: The ASP.NET HTTP Runtime Dino EspositoWintellect July 10, 2003 Applies to: Microsoft® ASP.NET Summary: Offers a detailed description of the constituent components of the HTTP runtime and of the l... 阅读全文

posted @ 2009-04-03 15:07 ImCoOLeR 阅读(386) 评论(0) 推荐(0) 编辑