码迷,mamicode.com
首页 > Web开发 > 详细

IHttpModule 配置方法

时间:2017-02-28 19:15:13      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:webserver   ati   window   name   setting   XML   type   encoding   windows   

<?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 配置方法

标签:webserver   ati   window   name   setting   XML   type   encoding   windows   

原文地址:http://www.cnblogs.com/yougmi/p/6480232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!