码迷,mamicode.com
首页 > Web开发 > 详细

HTTP错误500.22 检测到在集成的托管管道模式下不适用的ASP.NET设置

时间:2017-04-23 01:01:33      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:wirte   webserver   image   net   targe   解决方案   asp   文件   src   

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

技术分享

解决方案一:

技术分享

解决方案二:

修改配置文件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错误500.22 检测到在集成的托管管道模式下不适用的ASP.NET设置

标签:wirte   webserver   image   net   targe   解决方案   asp   文件   src   

原文地址:http://www.cnblogs.com/ChineseMoonGod/p/6750058.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!