我的某个SharePoint网站上出现此错误。
答案 0 :(得分:0)
我必须在web.config中更改此设置
<urlCompression
doDynamicCompression="true"
doStaticCompression="true"
dynamicCompressionBeforeCache="<this should be false>"/>
将dynamicCompressionBeforeCache设置为false,它对我有效。
答案 1 :(得分:0)
对我来说,在 web.config 中禁用输出缓存是有效的,就像这样:
<system.web>
<caching>
<outputCache enableOutputCache="false"/>
</caching>
</system.web>