zoukankan      html  css  js  c++  java
  • 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" />

  • 相关阅读:
    十天冲刺第1天
    第十四周学习总结
    评价输入法
    第十三周学习总结
    第十二周学习总结
    失物招领平台10
    失物招领平台9
    失物招领平台8
    第十一周学习总结
    失物招领平台7
  • 原文地址:https://www.cnblogs.com/zlfucku/p/5226830.html
Copyright © 2011-2022 走看看