VS15 中的集成托管管道模式错误

Integrated managed pipeline mode Error in VS15

我是 visual studio 2012 的用户,但现在我切换到 visual studio 2015。

新开发的应用程序正在运行并且 运行 在开发服务器上运行良好,但是当我打开旧的 .Net 应用程序并运行它们时,它会生成如下错误:

An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.

我该如何解决这个问题? 谁能帮帮我?

按照this SO thread

中的答案

解决这个问题有三个选项。

  1. 将应用程序池模式更改为启用经典管道的模式。

  2. 在 web.config/ 网络应用程序需要进行更改以支持集成管道。通常这就像删除 web.config.

  3. 的一部分一样简单
  4. 将以下内容添加到您的 web.config。

我刚刚在配置标签下的 web.config 文件中添加了以下行:

 <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
  </system.webServer>