StudyJSP - jsp5_session - sessionTest2_get.jsp

모쿠모쿠·2022년 6월 19일

JSP

목록 보기
49/151
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h1>sessionTest2_get.jsp</h1>
	<h3>세션에 저장된 값 : <%=session.getAttribute("sessionValue1") %></h3>
	<h3>세션에 저장된 값 : <%=session.getAttribute("sessionValue2") %></h3>
</body>
</html>

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>

Insert title here

sessionTest2_get.jsp

세션에 저장된 값 : <%=session.getAttribute("sessionValue1") %>

세션에 저장된 값 : <%=session.getAttribute("sessionValue2") %>

profile
Hello, Velog!

0개의 댓글