http://www.cnblogs.com/catcherx/p/3330909.html
第一种方法:配置应用程序池
在IIS7上配置应用程序池,并且将程序池的模式改为“经典”,之后一切正常。如图:
第二种方法:修改web.config配置文件:
例如原先设置(你的环境中可能没有httpModules,httpHandlers节点)
[html] view plaincopyprint?
- <system.web>
- ............
- <httpModules>
- <add name="MyModule" type="MyApp.MyModule" />
- </httpModules>
- <httpHandlers>
- <add path="*.myh" verb="GET" type="MyApp.MyHandler" />
- </httpHandlers>
- .............
- </system.web>
<system.web> ............ <httpModules> <add name="MyModule" type="MyApp.MyModule" /> </httpModules> <httpHandlers> <add path="*.myh" verb="GET" type="MyApp.MyHandler" /> </httpHandlers> ............. </system.web>
在IIS7应用程序池为“集成模式”时,改为:(httpModules改为modules,httpHandlers改为Handlers了)
[html] view plaincopyprint?
- <system.web>
- ...........
- </system.web>
- <system.webServer>
- <modules>
- <add name="MyModule" type="MyApp.MyModule" />
- </modules>
- <handlers>
- <add name="MyHandler" path="*.myh" verb="GET" type="MyApp.MyHandler" preCondition="integratedMode" />
- </handlers>
- </system.webServer>
<system.web> ........... </system.web> <system.webServer> <modules> <add name="MyModule" type="MyApp.MyModule" /> </modules> <handlers> <add name="MyHandler" path="*.myh" verb="GET" type="MyApp.MyHandler" preCondition="integratedMode" /> </handlers> </system.webServer>
(如果你的web.config没有httpModules,httpHandlers节点,则直接在节点system.webServer中添加:
<validation validateIntegratedModeConfiguration="false" /> 这样可以禁止验证集成模式,避免错误提示。
时间: 2024-10-01 06:44:14