在jsp中清除会话

时间:2012-12-28 09:54:10

标签: session jsp-tags

我使用jsp开发了一个web appilcation,当用户尝试注销时,即使我使用了session.invalidate()session.removeAttribute("username"); session.removeAttribute("type");,会话仍未清除当我按下浏览器的按钮时,它会重定向到上一页用户。

我的退出代码是

<%
  session.removeAttribute("username");
  session.removeAttribute("type");
  session.removeAttribute("Data");
  session.invalidate();
  response.sendRedirect("Login.jsp"); 
%>

提前感谢.....

0 个答案:

没有答案