반응형
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>쿠키 삭제</title>
<%
//쿠키를 삭제할 때는 유효시간을 0으로 설정하면 됩니다.
Cookie cookie =new Cookie("name","");
cookie.setMaxAge(0);
response.addCookie(cookie);
%>
<script>
function winClose(){
//자기 자신을 닫기
self.close();
}
</script>
</head>
<body>
쿠키삭제
<input type="button" value="닫기" onclick="winClose()" />
</body>
</html>
'Web개발 > JSP, Web' 카테고리의 다른 글
[JSP] EL 사용하기 (0) | 2014.11.18 |
---|---|
[JSP] 쿠키 변경 (0) | 2014.11.18 |
[JSP] 모든 쿠키 읽기 (0) | 2014.11.18 |
[JSP] 쿠키생성하기 (0) | 2014.11.18 |
[JSP] 로그인 하기 (0) | 2014.11.18 |