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

HTTP错误500.22 检测到在集成的托管管道模式下不适用的ASP.NET设置,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。