개발/WEB개발
JSP 로그아웃 만들기
DoR@Hee
2019. 1. 31. 17:50
View + Controller -loginout.jsp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <% session.invalidate(); response.sendRedirect("login.jsp"); %> <!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Insert title here</title> </head> <body> </body> </html> | cs |