IIS7 应用程序池设置成 经典 v2.0

      HTTP 错误 500.21 - Internal Server Error 处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“ManagedPipelineHandler” 报错

 

      主要是 Web.config 配置需要加上以下黄色的一串,由于我的开发机是64位操作系统。

      

<system.webServer>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated"/>
<remove name="ScriptHandlerFactory"/>
<remove name="ScriptHandlerFactoryAppServices"/>
<remove name="ScriptResource"/>
<add name="myhandler" path="/test" verb="POST,GET" type="your dll,your assembly" modules="IsapiModule" scriptProcessor="C:WindowsMicrosoft.NETFramework64v2.0.50727aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="bitness64" />

原文地址:https://www.cnblogs.com/zlfucku/p/5226830.html