这三个对象我们在开发Asp.net程序时经常会用到,似乎很熟悉,但有时 候又不太确定。本文通过一个简单的例子来直观的比较一下这三个对象的使用。 HttpModule:Http模块,可以在页面处理前后、应用程序初始化、出错等时候加入自己的事件处理程序 HttpHandler:Http处理程序,处理页面请求 HttpHandlerFactory:用来创建Http处理程序,创建的同时可以附加自己的事件处理程序

例子很简单,就是在每个页面的头部加入一个版权声明。 一、HttpModule 这个对象我们经常用来进行统一的权限判断、日志等处理。例子代码:

  1. public class MyModule : IHttpModule
  2. {
  3. public void Init(HttpApplication application)
  4. {
  5. application.BeginRequest += new EventHandler(application_BeginRequest);
  6. }
  7. void application_BeginRequest(object sender, EventArgs e)
  8. {
  9. ((HttpApplication)sender).Response.Write("Copyright @Gspring<br/>");
  10. }
  11. public void Dispose()
  12. {
  13. }
  14. }
  1. public class MyModule : IHttpModule
  2. {
  3. public void Init(HttpApplication application)
  4. {
  5. application.BeginRequest += new EventHandler(application_BeginRequest);
  6. }
  7. void application_BeginRequest(object sender, EventArgs e)
  8. {
  9. ((HttpApplication)sender).Response.Write("Copyright @Gspring<br/>");
  10. }
  11. public void Dispose()
  12. {
  13. }
  14. }

web.config中配置:

三、HttpHandlerFactory 这个对象也可以用来加入特殊的后缀所对应的处理程序,它的功能比HttpHandler要更加强大,在系统的web.config中就是通过注册HttpHandlerFactory来实现aspx页面的访问的:

  1. <add path="*.aspx" verb="*" type="System.Web.UI.PageHandlerFactory" validate="true"/>
  1. <add path="*.aspx" verb="*" type="System.Web.UI.PageHandlerFactory" validate="true"/>

HttpHandlerFactory是HttpHandler的工厂,通过它来生成不同的HttpHandler对象。 例子代码:

  1. public class MyHandlerFactory : IHttpHandlerFactory
  2. {
  3. public IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated)
  4. {
  5. PageHandlerFactory factory = (PageHandlerFactory)Activator.CreateInstance(typeof(PageHandlerFactory), true);
  6. IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated);
  7. //执行一些其它操作
  8. Execute(handler);
  9. return handler;
  10. }
  11. private void Execute(IHttpHandler handler)
  12. {
  13. if (handler is Page)
  14. {
  15. //可以直接对Page对象进行操作
  16. ((Page)handler).PreLoad += new EventHandler(MyHandlerFactory_PreLoad);
  17. }
  18. }
  19. void MyHandlerFactory_PreLoad(object sender, EventArgs e)
  20. {
  21. ((Page)sender).Response.Write("Copyright @Gspring<br/>");
  22. }
  23. public void ReleaseHandler(IHttpHandler handler)
  24. {
  25. }
  26. }
  1. public class MyHandlerFactory : IHttpHandlerFactory
  2. {
  3. public IHttpHandler GetHandler(HttpContext context, string requestType, string url, string pathTranslated)
  4. {
  5. PageHandlerFactory factory = (PageHandlerFactory)Activator.CreateInstance(typeof(PageHandlerFactory), true);
  6. IHttpHandler handler = factory.GetHandler(context, requestType, url, pathTranslated);
  7. //执行一些其它操作
  8. Execute(handler);
  9. return handler;
  10. }
  11. private void Execute(IHttpHandler handler)
  12. {
  13. if (handler is Page)
  14. {
  15. //可以直接对Page对象进行操作
  16. ((Page)handler).PreLoad += new EventHandler(MyHandlerFactory_PreLoad);
  17. }
  18. }
  19. void MyHandlerFactory_PreLoad(object sender, EventArgs e)
  20. {
  21. ((Page)sender).Response.Write("Copyright @Gspring<br/>");
  22. }
  23. public void ReleaseHandler(IHttpHandler handler)
  24. {
  25. }
  26. }

web.config中配置:

  1. <httpHandlers>
  2. <add verb="*" path="*.aspx" type="HttpHandle.MyHandlerFactory, HttpHandle"/>
  3. </httpHandlers>
  1. <httpHandlers>
  2. <add verb="*" path="*.aspx" type="HttpHandle.MyHandlerFactory, HttpHandle"/>
  3. </httpHandlers>

在例子中我们通过调用系统默认的PageHandlerFactory类进行常规处理,然后在处理过程中加入自己的代码,可以在Page对象上附加自己的事件处理程序。 附一个小的恶作剧: 我们可以开发好aspx页面,然后把web应用程序发布后把所有的aspx文件的后缀都改为spring,再在web.config中加入配置:

  1. <httpHandlers>
  2. <add verb="*" path="*.spring" type="HttpHandle.MyHandlerFactory, HttpHandle"/>
  3. </httpHandlers>
  4. <compilation>
  5. <buildProviders>
  6. <add extension=".spring" type="System.Web.Compilation.PageBuildProvider"/>
  7. </buildProviders>
  8. </compilation>
  1. <httpHandlers>
  2. <add verb="*" path="*.spring" type="HttpHandle.MyHandlerFactory, HttpHandle"/>
  3. </httpHandlers>
  4. <compilation>
  5. <buildProviders>
  6. <add extension=".spring" type="System.Web.Compilation.PageBuildProvider"/>
  7. </buildProviders>
  8. </compilation>

buildProviders是用来指定spring后缀的编译程序,我们把它设置成和aspx一致就可以了。如果在IIS中发布的话还需要在应用程序配置中加入spring的后缀映射。然后我们就可以通过 http://../.../*.spring来访问我们的网站了

  1. <add verb="*" path="*.aspx" type="HttpHandle.MyHandler, HttpHandle"/>
  2. </httpHandlers>
  1. <httpHandlers>
  2. <add verb="*" path="*.aspx" type="HttpHandle.MyHandler, HttpHandle"/>
  3. </httpHandlers>

这个对象主要就是ProcessRequest方法,在这个方法中输出版权信息,但同时也有一个问题:原来的页面不会被处理,也就是说页面中只有版权声明了。那么所有的aspx页面都不能正常运行了

.net关于httpModules的应用示例的更多相关文章

  1. HttpModule & HttpHandler

    ASP.NET 处理请求的过程 inetinfo.exe:www 服务进程,IIS 服务 和 ASPNET_ISAPI.dll 都寄存在此进程中. ASPNET_ISAPI.dll:处理 .aspx ...

  2. 一步一步带你做WebApi迁移ASP.NET Core2.0

    随着ASP.NET Core 2.0发布之后,原先运行在Windows IIS中的ASP.NET WebApi站点,就可以跨平台运行在Linux中.我们有必要先说一下ASP.NET Core. ASP ...

  3. WebApi迁移ASP.NET Core2.0

    WebApi迁移ASP.NET Core2.0 一步一步带你做WebApi迁移ASP.NET Core2.0   随着ASP.NET Core 2.0发布之后,原先运行在Windows IIS中的AS ...

  4. .Net Core技术研究-WebApi迁移ASP.NET Core2.0

    随着ASP.NET Core 2.0发布之后,原先运行在Windows IIS中的ASP.NET WebApi站点,就可以跨平台运行在Linux中.我们有必要先说一下ASP.NET Core. ASP ...

  5. 采用HttpModules来重写URLS

    首先写一个处理URLs重写的类,并且这个类必须继承IHttpHandler接口,以博客园的程序为例: public class UrlReWriteModule : System.Web.IHttpM ...

  6. 关于asp.net mvc中的httpModules 与 httpHandler

    ASP.NET对请求处理的过程: 当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个请求转交给ASPNET_ISAPI.dll,A ...

  7. httpModules 与 httpHandlers

    ASP.NET对请求处理的过程:当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个请求转交给ASPNET_ISAPI.dll,AS ...

  8. 浅谈Httpmodules

    HttpModule是ASP.NET过滤器,可以理解为HTTP请求的必经之地我们只要实现IHttpModule接口,就可以取代HttpModule namespace BookShop.Handler ...

  9. ASP.NET中httpmodules与httphandlers全解析

    https://www.cnblogs.com/zpc870921/archive/2012/03/12/2391424.html https://www.cnblogs.com/PiaoMiaoGo ...

随机推荐

  1. C函数及指针学习1

    1 大段程序注释的方法 #if 0#endif 2三字母词 以两个问号 开始的都要注意 3 字面值(常量) 在整型号字面值后加 字符L (long),U(unsigned)说明字符常量 为长整型 或( ...

  2. JavaWeb学习记录(十五)——浏览器Cookie禁用后的处理

    IE禁用Cookie方式:

  3. HTML中特殊字符和与之对应的ASCII代码

    ASCII代码是说明了在html中每个特殊字符的属性以及字符的简要说明.在使用html时,如何把ASCII代码添加到网页中.例如版权符号'©'在html中可以通过 "©"来显示. ...

  4. 黑马程序员——JAVA基础之简述多线程,两种创建多线程的方式

    ------- android培训.java培训.期待与您交流! ---------- 多线程: 进程和线程: 进程:是一个正在执行中的程序.每一个进程执行都有一个执行顺序.该顺序是一个执行路径,或者 ...

  5. 对 Android 开发者有益的 40 条优化建议

    本文转载于:http://www.oschina.net/translate/40-developer-tips-for-android-optimization?cmp 下面是开始Android编程 ...

  6. Android TextView换行问题

    本文转载于:http://niufc.iteye.com/blog/1729792 ndroid的TextView在显示文字的时候有个问题就是一行还没显示满就跳到下一行,原因是: 1) TextVie ...

  7. Nginx-/etc/sysctl.conf 参数解释

    来自<深入理解Nginx模块开发与架构解析> P9 #表示进程(例如一个worker进程)可能同时打开的最大句柄数,直接限制最大并发连接数 fs. #1代表允许将状态为TIME-WAIT状 ...

  8. Object-c 语言

    字符串操作: http://www.myexception.cn/mobile/455287.html 1,判断两字符串是否相同 NSString *str1 = @"hello pepe& ...

  9. 【Unity3D基础教程】给初学者看的Unity教程(六):理解Unity的新GUI系统(UGUI)

    作者:王选易,出处:http://www.cnblogs.com/neverdie/ 欢迎转载,也请保留这段声明.如果你喜欢这篇文章,请点推荐.谢谢! 理解UGUI的基础架构 UGUI是Unity在4 ...

  10. C#学习之LinqtoSql类的简单例子

    LinqtoSql类把访问.操作数据库的细节封装了起来,把连接操作数据库变得相当简单.下面是简单的例子. 第一步:添加LinqtoSql类 1.创建一个控制台应用程序项目,下载一个NrothWind ...