IIS7 应用程序池设置成 经典 v2.0
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="Script" preCondition="bitness64" />
以上是关于IIS7 应用程序池设置成 经典 v2.0的主要内容,如果未能解决你的问题,请参考以下文章