jsp中创建注销文件

发布于 2024-10-15 02:59:10 字数 97 浏览 2 评论 0原文

我是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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

饮惑 2024-10-22 02:59:10

强制浏览器调用服务器而不是内存中缓存的页面。
需要在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);

你与昨日 2024-10-22 02:59:10

为此,您应该使用 Java 过滤器,它会重定向到页面或在 session==null 时给出错误页面

For that you should use Java filter which redirects to a page or give an error page if session==null

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文