asp.net web.config 经典模式和集成模式相关配置

<?xml version="1.0"?>
<configuration>
  <!--IIS经典模式下使用-->
  <system.web>
    <httpHandlers>
      <add path="request.aspx" verb="*" type=" Bll.Handler.Test"/>
      <add path="test.aspx" verb="*" type=" Bll.Handler.Test"/>
    </httpHandlers>
  </system.web>
  <!--IIS集成模式下使用-->
  <!--<system.webServer>
    <handlers>
      <add name="request" path="request.aspx" verb="*" type=" Bll.Handler.Test"/>
      <add name="test" path="test.aspx" verb="*" type=" Bll.Handler.Test"/>
    </handlers>
  </system.webServer>-->
</configuration>

 

posted @ 2016-08-24 18:06  秋风过、枯叶落  阅读(1027)  评论(0编辑  收藏  举报