Safari browser ignoring my no-cache

放肆的年华 提交于 2019-12-18 04:18:21

问题


I'm unable to force a page to always expire in Safari. Chrome, IE and Firefox are good citizens but Safari is cruising along just fine with ignoring the following ASP.NET code:

// Expire immediately
Response.Expires = 0;
Response.Cache.SetNoStore();
Response.AppendHeader("Pragma", "no-cache");

Any recommendations?


回答1:


Believe it or not, the way to make Safari always reload the page was simply to add this to the body tag:

onunload=""

I found a mention of this here: Is there a cross-browser onload event when clicking the back button?



来源:https://stackoverflow.com/questions/3384935/safari-browser-ignoring-my-no-cache

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!