2
我想整齊地禁用WCF應用程序的輸出緩存。 enableOutputCache屬性由於某種原因不起作用,有人可以解釋原因,或者提出解決方法。通過web.config禁用輸出緩存
<system.web>
<caching>
<outputCache enableOutputCache="false" enableFragmentCache="false"></outputCache>
<outputCacheSettings>
<outputCacheProfiles>
</outputCacheProfiles>
</outputCacheSettings>
</caching>
</system.web>
感謝
前http://stackoverflow.com/questions/5550242/disable-cache-globally-net – athoik
你想禁用緩存WCF服務據媒體鏈接或回答整個網站? –
@Waqar Janjua我想爲其中一個WCF應用程序禁用緩存 – Costa