sessionTest.jsp
페이지 정보
본문
<%@ 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>
- 이전글● 세션 (Session) 객체 21.07.15
- 다음글sessionSet.jsp 21.07.15
댓글목록
등록된 댓글이 없습니다.