zoukankan      html  css  js  c++  java
  • HTTP错误500.22 检测到在集成的托管管道模式下不适用的ASP.NET设置

    这里主要把集成模式改成经典模式

    解决方案一:

    解决方案二:

    修改配置文件web.config

    <configuration>

      <system.web>      

        <compilation debug="true" targetFramework="4.5" />   

         <httpRuntime targetFramework="4.5" />   

        <httpModules>    

           <add  name="MyModule1" type="iis.UrlReWirte"/>  

         </httpModules>

        </system.web>  

    </configuration>

    修改为

    <configuration>

      <system.web>      

        <compilation debug="true" targetFramework="4.5" />   

         <httpRuntime targetFramework="4.5" />   

         </system.web>  

       <system.webServer>  

             <modules>      

          <add  name="MyModule1" type="iis.UrlReWirte"/>  

         </modules>  

       </system.webServer>

    </configuration>

    转载自:http://blog.csdn.net/yf505261213/article/details/8462559

  • 相关阅读:
    jQuery-03
    正则表达式
    文件下载
    Shiro笔记
    MyBatis笔记
    Spring5笔记
    JavaScript笔记
    smartsvn安装和使用 —— svn工具linux版
    网易云歌单导入qq音乐
    svn版本回滚 —— svn使用笔记之三
  • 原文地址:https://www.cnblogs.com/youmeng/p/3673106.html
Copyright © 2011-2022 走看看