sessionTest.jsp
페이지 정보
작성자 관리자 작성일 21-07-15 19:19 조회 405 댓글 0본문
<%@ page language="java" contentType="text/html; charset=UTF-8"%>
<%
String name ="세션 값 없음.";
String age ="세션 값 없음.";
if (session.getAttribute("name")!=null){
name=(String)session.getAttribute("name");
}
if (session.getAttribute("age")!=null){
age=(String)session.getAttribute("age");
}
%>
<html>
<head>
<title>Session Test</title>
</head>
<body>
<h2>세션 테스트</h2>
<input type="button" onclick="location.href='sessionSet.jsp'" value="세션 값 저장">
<input type="button" onclick="location.href='sessionDel.jsp'" value="세션 값 삭제">
<input type="button" onclick="location.href='sessionInvalidate.jsp'" value="세션 초기화">
<h3>name : <%=name %></h3>
<h3>age : <%=age %></h3>
</body>
</html>
추천0
댓글목록 0
등록된 댓글이 없습니다.