IIS6 + HttpModule: This operation requires IIS integrated pipeline mode

后端 未结 4 923
半阙折子戏
半阙折子戏 2020-12-10 02:22

I am using IIS6, I\'ve written an HttpModule, and I get this error? After googling the web I find that this problem is caused by the .NET framework 3.5, so I put this on a

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-10 02:51

    Only IIS7 supports the integrated pipeline. On IIS7 a HttpModule can participate in all requests coming to the web server not just those targeting specific file extensions.

    II6 uses what IIS7 calls the classic pipeline where a HttpModules can only get involved once the earlier ISAPI based pipeline determines that the script mapping requires the request to handed over to ASP.NET.

提交回复
热议问题