IIS8 httpHandlers->handles

在iis 8中,原有的web.config中

  <system.web>

    <httpHandlers>

      <add verb="*" path="*.asyn" type="AsnyHandler"/>

    </httpHandlers>

  </system.web>

要改为

  <system.webServer>

    <handlers>

      <add name="x" verb="*" path="*.asyn" type="AsnyHandler"/>

    </handlers>

  </system.webServer>

 否则:

无法在集成模式运行!

即使经典模式也无法识别type!!

你可能感兴趣的:(handler)