我有一个基于asp.net 2.0 (C#)
构建的应用程序,我想要做的是clear the browser cache after certain interval of time
。假设,应用程序的登录页面是A.aspx,用户从A.aspx导航到其他页面B.aspx,然后如果用户clicks back button from the browser
返回A.aspx within 10mins
,我想要page to load from the cache
,但如果用户尝试导航到页面A.aspx after 10mins
,那么我想要应用程序中的page to load from the server or some other link
。我怎样才能acheieve this across all browsers
?
我尝试设置:
Response.Cache.AppendCacheExtension("must-revalidate");
Response.Cache.AppendCacheExtension("max-age=120");
使用partial success in Internet Explorer
但not with other browsers
。
任何帮助将非常感谢!
谢谢。