我尝试将meta标签用于我想要停止缓存的特定页面,并尝试在Web配置中添加缓存,但它没有帮助。我使用了以下标签。
在webconfig中使用:
<system.webServer>
<caching enabled="false" />
</system.webServer>
在特定页面中使用:
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
答案 0 :(得分:0)
我假设您正在使用firefox进行测试,而不检查这些元标记。我也有这个问题,不幸的是你无法通过你网页上的代码来控制firefox的缓存行为(据我上次检查是在两个月前我知道的。)