我有一个包含嵌套框架集的html页面(不要问为什么,我只是为app提供服务;))。困扰我的是FF为什么不断缓存Header.htm文件。我不得不使用清除缓存强制浏览器再次下载它。 ctrl + f5没有帮助。
<frameset rows="68,*" border="0" frameborder="no" framespacing="0">
<frame name="header" src="/Header.htm" scrolling="no" noresize>
<frame name="footer" src="/Login.aspx?w=<% =company %>&loc=<% =ccdom %>">
</frameset>
任何想法是什么导致了这种行为?另一方面,IE浏览器没有麻烦下载文件。
谢谢,Pawel
答案 0 :(得分:3)
尝试添加
<meta http-equiv="cache-control" content="no-cache"/>
<meta http-equiv="pragma" content="no-cache"/>
到header.html文件