在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
试试了一下在 .NET中通过如下语句 Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache); 就可以使页面的缓存失效,每次都需要获取新页面。 顺便找了一下asp中的处理方法如下: Response.Buffer = True Response.ExpiresAbsolute = Now() - 1 Response.Expires = 0 Response.CacheControl = "no-cache" 也测试通过。 不过通过添加Client-side的方法: <meta http-equiv="expires" content="0"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="pragma" content="no-cache"> 没有测试通过,请哪位指点一下 另外如果点击IE的后退按钮提示“页面已经失效” 这种效果如何实现也请指点一下 |
请发表评论