cookieTest1.jsp > MODEL

본문 바로가기

사이트 내 전체검색

뒤로가기 MODEL

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

등록된 댓글이 없습니다.


Copyright © dancePKT. All rights reserved.
PC 버전으로 보기