cookieTest1.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%
Cookie cookie=new Cookie("name","parkkyutae");
cookie.setMaxAge(600); //초단위
response.addCookie(cookie); //생성한 쿠키를 클라이언트로 전송
%>
<html>
<head>
<title>Cookie Test</title>
</head>
<body>
<h2><%=cookie.getName() %></h2>
<h2><%=cookie.getValue() %></h2>
<h2><%=cookie.getMaxAge() %></h2>
<a href="cookieTest2.jsp">쿠키 값 불러오기</a>
</body>
</html>
추천0
- 이전글● 쿠키 (cookie) 객체 21.07.15
- 다음글cookieTest2.jsp 21.07.15
댓글목록
등록된 댓글이 없습니다.