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

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

时间:2016-08-24 19:20:02      阅读:719      评论:0      收藏:0      [点我收藏+]

标签:

<?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>

 

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

标签:

原文地址:http://www.cnblogs.com/foreverfendou/p/5804124.html

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