确保“始终检查新页面”在 Internet Explorer 中
我们的应用程序中的某些 Web 服务存在问题。基本上,Internet Explorer 会缓存一些 XML,因此应用程序不会更新。我们的一些开发人员要求我看看是否有一种方法,可以通过 vbscript 添加到登录脚本中,也可以通过组策略来确保设置:
Internet 选项 -> 。一般->浏览历史记录->设置->检查存储页面的较新版本
设置为“每次访问网页时”。
到目前为止,我尚未成功找到通过脚本或修改注册表项来操纵此问题的方法。任何对此的帮助将不胜感激。我需要涵盖 IE 6,7, &最好是8。
感谢您的帮助。
凯文
We are having a problem with some of our web services in our applications. Basically, Internet Explorer is caching some of the XML and so the apps are not updating. I have been asked by some of our developers to see if there is a way, either via vbscript that I can add to the login script or through Group Policy, to ensure that the setting:
Internet Options -> General -> Browsing History -> Settings -> Check for newer versions of stored pages
is set to Everytime I visit the webpage.
I have been unsuccessful so far to find a way to manipulate this through script or through modifying a registry key. Any help in this would be greatly appreciated. I need to cover IE 6,7, & 8 preferably.
Thanks for your help.
Kevin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该注册表项名为 SyncMode5,您可以在以下位置找到它: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
您还可以使用 IEAK 配置此设置。
但 Slaks 是正确的,正确的修复方法是让服务器发送正确的缓存标头。
The registry key is named SyncMode5, you'll find it in: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings
You can also configure this setting using the IEAK.
But Slaks is correct that the proper fix is to have the server send correct caching headers.