cookieTest1.jsp
페이지 정보
작성자 관리자 작성일 21-07-15 19:25 조회 620 댓글 0본문
<%@ 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
댓글목록 0
등록된 댓글이 없습니다.