JSP
chapter07 : 02_session_init
GAWON
2023. 5. 23. 18:35
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
//세션에 모든 정보를 삭제(초기화) 진행
session.invalidate();
response.sendRedirect("Ex07_01_session.jsp");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
</body>
</html>