Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter02 : JSTL1 / JSTL2 본문

JSP/JSTL

chapter02 : JSTL1 / JSTL2

GAWON 2023. 5. 24. 18:36
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<%--변수를 request에 저장 --%>
	<c:set var="name" value="김씨" scope="request"/>
	<c:set var="addr" value="서울" scope="request"/>
	<c:set var="phone" value="010-0000-0000" scope="request"/>
	<jsp:forward page="Ex02_JSTL2.jsp"/>
</body>
</html>
<%@ 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>
	
	이름 : ${name }<br>
	주소 : ${addr }<br>
	전화번호 : ${phone }<br>
</body>
</html>

'JSP > JSTL' 카테고리의 다른 글

chapter05 : JSTL1 /JSTL2  (0) 2023.05.24
chapter04 : JSTL1 / JSTL2  (0) 2023.05.24
chapter03 : JSTL1 / JSTL2  (0) 2023.05.24
chapter01 : JSTL1  (0) 2023.05.24
JSTL  (0) 2023.05.24