| 123456789101112131415161718 |
- <%@ include file="jsp/common/header.jsp" %>
- <!-- CONTENT -->
- <TABLE>
- <%
- System.out.println("masuk logout session invalidate");
- request.getSession().invalidate();
- HttpSession s = request.getSession(false);
- s = null;
- response.sendRedirect("login.do");
- %>
- </TABLE>
- <!-- END CONTENT -->
- <%@ include file="jsp/common/footer.jsp" %>
-
|