cookieExample2.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%
Cookie cookie=new Cookie("language",request.getParameter("language"));
cookie.setMaxAge(60*60*24); //24시간
response.addCookie(cookie); //생성한 쿠키를 클라이언트로 전송
%>
<script>
location.href="cookieExample1.jsp"
</script>
추천0
- 이전글cookieExample1.jsp 21.07.15
- 다음글● 쿠키 (cookie) 객체 21.07.15
댓글목록
등록된 댓글이 없습니다.