假设我想使用F5“开始调试”选项打开页面foo.htm。是否有一些可以添加到VS的宏可以打开页面并始终自动将任意参数附加到查询字符串中:
foo.htm?bar=Date().getTime().toString()
在VS中打开任何html页面都会发生这种情况。
或者,是否存在对VS说的设置,“始终从磁盘读取html页面 - 从未使用过缓存版本”。
答案 0 :(得分:0)
在html页面中添加以下行。它将确保您始终从磁盘读取html页面。
<head>
<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" />
</head>