IIS 7动态压缩引起CuteEditor在IE 6中不能正常工作

CuteEditor升级到6.5之后,在IE 6中打开,显示错误信息:Failed to load impl code!

后来发现是IIS 7启用了动态内容压缩(dynamic content compress) 引起的。

解决方法:取消“CuteSoft_Client”的动态内容压缩,在CuteSoft_Client文件中增加以下配置的web.config文件:

<configuration>
<system.webServer>
<urlCompression doStaticCompression="true" doDynamicCompression="false" />
</system.webServer>
</configuration>



原文地址:https://www.cnblogs.com/dudu/p/1587129.html