首页 > 代码库 > IHttpModule 配置方法

IHttpModule 配置方法

<?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>
    <modules>
      <!--iis 集成模式配置方式-->
      <add name="my" type="WebTest.Module.MyModule,WebTest"/>
    </modules>
  </system.webServer>
</configuration>

 

IHttpModule 配置方法