使用IE插件不能打开的解决

使用IE插件不能打开的解决
 
1、加
     <add key="TamperProofCommunication" value="false" />
2、替换
<location path="Default Web Site">
    <system.webServer>
      <handlers>
        <remove name="rules-Integrated" />
        <remove name="LimsExtension64" />
      </handlers>
    </system.webServer>
  </location>
     为:
<location path="Default Web Site">
          <system.webServer>
               <handlers>
                    <remove name="ASPClassic" />
                    <remove name="LimsExtension64" />
               </handlers>
          </system.webServer>
     </location>
 
 
位置:
C:\inetpub\wwwroot\???\web.config
原文地址:https://www.cnblogs.com/chenjx/p/7107286.html