无法登陆 无法退出问题
发布网友
发布时间:2024-09-17 00:33
我来回答
共1个回答
热心网友
时间:2024-10-21 06:02
这是由于缓存滞留客户端造成的问题,有两种解决方法
1) 设置页面的无缓存
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
2) 或者直接在页面的 header 元素中添加内容
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
补充:
用这样的方式
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="Mon, 23 Jan 2008 12:52:30 GMT">
将以上 expires 的 content 修改为你想要过期的时间即可,时间的格式必须是 UTF 标准时间哦(不是+8北京时间),你修改下就可以用了。