.net关于httpModules的应用示例

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

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

view plaincopy to clipboardprint?

  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. }

[csharp] view plaincopy

  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页面的访问的:

view plaincopy to clipboardprint?

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

[csharp] view plaincopy

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

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

view plaincopy to clipboardprint?

  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. }

[csharp] view plaincopy

  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中配置:

view plaincopy to clipboardprint?

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

[csharp] view plaincopy

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

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

view plaincopy to clipboardprint?

  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>

[csharp] view plaincopy

  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来访问我们的网站了

view plaincopy to clipboardprint?

<httpHandlers>

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

[csharp] view plaincopy

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

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

时间: 2024-10-12 23:03:22

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

HttpModule &amp; HttpHandler

ASP.NET 处理请求的过程 inetinfo.exe:www 服务进程,IIS 服务 和 ASPNET_ISAPI.dll 都寄存在此进程中. ASPNET_ISAPI.dll:处理 .aspx 文件的 win32 组件.其实,IIS 服务器只能识别 .html 文件的,当发现被请求的文件是 .aspx 文件时,IIS 服务器将其交给 aspnet_isapi.dll 来处理. aspnet_wp.exe 进程:ASP.NET 框架进程,提供 .net 运行的托管环境,CLR (公共语言运行

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

随着ASP.NET Core 2.0发布之后,原先运行在Windows IIS中的ASP.NET WebApi站点,就可以跨平台运行在Linux中.我们有必要先说一下ASP.NET Core. ASP.NET Core 是新一代的 ASP.NET,第一次出现时的代号为 ASP.NET vNext,后来命名为ASP.NET 5,随着它的完善与成熟,最终命名为 ASP.NET Core,这表明它已不是 ASP.NET 的升级,而是一个重新设计的Web开发框架.而它一个非常重要的变化就是它不再依赖于I

httpModules与httpHandlers

ASP.NET对请求处理的过程: 当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个请求转交给ASPNET_ISAPI.dll,ASPNET_ISAPI.dll会通过http管道(Http PipeLine)将请求发送给ASPNET_WP.exe进程,在ASPNET_WP.exe进程中通过HttpRuntime来处理这个请求,处理完毕将结果返回客户端. inetinfo.exe进程:是www服务的进程,IIS服务和ASPNET

httpModules 与 httpHandlers

ASP.NET对请求处理的过程:当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个请求转交给ASPNET_ISAPI.dll,ASPNET_ISAPI.dll会通过http管道(Http PipeLine)将请求发送给ASPNET_WP.exe进程,在ASPNET_WP.exe进程中通过HttpRuntime来处理这个请求,处理完毕将结果返回客户端.    inetinfo.exe进程:是www服务的进程,IIS服务和ASPN

关于asp.net mvc中的httpModules 与 httpHandler

ASP.NET对请求处理的过程: 当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个请求转交给ASPNET_ISAPI.dll,ASPNET_ISAPI.dll会通过http管道(Http PipeLine)将请求发送给ASPNET_WP.exe进程,在ASPNET_WP.exe进程中通过HttpRuntime来处理这个请求,处理完毕将结果返回客户端. inetinfo.exe进程:是www服务的进程,IIS服务和ASPNET

app.config 示例

1 <?xml version="1.0" encoding="utf-8" ?> 2 <configuration> 3 <system.webServer> 4 <modules runAllManagedModulesForAllRequests="true"> 5 <add name="DomainServiceModule" preCondition="

web.config 示例

1 <?xml version="1.0" encoding="utf-8"?> 2 3 <!-- 4 有关如何配置 ASP.NET 应用程序的详细消息,请访问 5 http://go.microsoft.com/fwlink/?LinkId=169433 6 --> 7 8 <configuration> 9 <connectionStrings> 10 <add name="SqlConnStrin

web.config中的httpModules与httpHandlers[转载]

ASP.NET对请求处理的过程: 当请求一个*.aspx文件的时候,这个请求会被inetinfo.exe进程截获,它判断文件的后缀(aspx)之后,将这个请求转交给ASPNET_ISAPI.dll,ASPNET_ISAPI.dll会通过http管道(Http  PipeLine)将请求发送给ASPNET_WP.exe进程,在ASPNET_WP.exe进程中通过HttpRuntime来处理这个请求,处理完毕将结果返回客户端. inetinfo.exe进程:是www服务的进程,IIS服务和ASPNE

ASP.NET中httpmodules与httphandlers全解析

https://www.cnblogs.com/zpc870921/archive/2012/03/12/2391424.html https://www.cnblogs.com/PiaoMiaoGongZi/p/5216089.html https://www.cnblogs.com/xcsn/p/6939628.html 1.向每个页面动态添加一些备注或说明性的文字: 有的网站每一个页面都会弹出一个广告或在每个页面都以注释形式(<!-- -->)加入网站的版权信息.如果在每个页面教编写这样