IHttpModule 和 IHttpHandler 配置方法

<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <appSettings />
  <connectionStrings />
  <system.web>
    <authentication mode="Windows" />
   
    <httpModules>
      <!--iis 经典模式或者iis6.0 以下-->
      <add name="my" type="WebTest.Module.MyModule,WebTest"/>
    </httpModules>
  </system.web>

  <system.webServer>
  
      <!--iis 集成模式配置方式-->

    <handlers>
      <add name="hd" verb="*" path="*.aspx" type="WebTest.Handler.MyHandle,WebTest"/>
    </handlers>

    <modules>
      <!--iis 集成模式配置方式-->
      <add name="my" type="WebTest.Module.MyModule,WebTest"/>
    </modules>
  </system.webServer>
</configuration>
原文地址:https://www.cnblogs.com/yougmi/p/6480232.html