mvc:如何在调试模式下禁用缓存清除

时间:2016-04-27 11:32:57

标签: c# asp.net-mvc caching

在MVC中我的脚本在DEBUG模式下获取缓存

check here(抱歉,由于我没有足够的声誉,因此无法发布图片)

我想禁用缓存清理,我在下面尝试了

BundleTable.EnableOptimizations = false;

和web.config

<location path="Scripts">
    <system.webServer>
      <staticContent>
        <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00" cacheControlCustom="public" />
      </staticContent>
    </system.webServer>
  </location>

但是脚本仍然被缓存破坏,我可以在哪里检查以禁用缓存破坏... IIS?

0 个答案:

没有答案