我在我的一个 SharePoint 网站上收到此错误。
问问题
1101 次
2 回答
0
我必须在我的 web.config 中更改此设置
<urlCompression
doDynamicCompression="true"
doStaticCompression="true"
dynamicCompressionBeforeCache="<this should be false>"/>
将 dynamicCompressionBeforeCache 设置为 false,它对我有用。
于 2012-11-22T09:58:41.170 回答
0
对我来说,禁用 web.config 中的输出缓存是有效的,如下所示:
<system.web>
<caching>
<outputCache enableOutputCache="false"/>
</caching>
</system.web>
于 2021-05-25T06:44:32.967 回答