2022年4月7日 星期四

[2022.LEARN.009][筆記]MVC站台快取問題

  • 日前踩了個坑 ,(MVC產生的網頁*.html)被快取了。
    後面切換querystring都是抓第一次進入的頁面資訊。

<system.webServer>
<caching>
<profiles>
<add extension=".html" policy="CacheForTimePeriod" kernelCachePolicy="DontCache" duration="23:00:00" />
</profiles>
</caching>
</system.webServer>