jsp中创建注销文件
我是jsp新手。我想写一段会话登录的代码。假设有人登录&然后注销,就可以了!但是如果他按“后退”按钮,他不应该再次被定向到该页面。相反,他应该得到一个错误。请向我发送代码!
i am new to jsp. I want to write a code for session login.Suppose anyone logs in & then logs out,it's ok!But if he press the BACK button ,he should not be directed to that page again.Instead he should get an error.Please send me the code for it!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
强制浏览器调用服务器而不是内存中缓存的页面。
需要在jsp中使用以下代码:
response.setHeader("Cache-Control", "no-cache");
response.setHeader("Pragma", "无缓存");
response.setDateHeader("过期", 0);
Force browser to invoke the server rather than the cached page in the memory.
You need to use the following code in jsp:
response.setHeader("Cache-Control", "no-cache");
response.setHeader("Pragma", "no-cache");
response.setDateHeader("Expires", 0);
为此,您应该使用 Java 过滤器,它会重定向到页面或在 session==null 时给出错误页面
For that you should use Java filter which redirects to a page or give an error page if session==null