티스토리 뷰

it

jsp 지시어 include

ITs Story biaos 2023. 5. 24. 19:03

jsp 지시어 include

jsp 지시어 include 실습해보기

Include 여러번치지않고 한번에 같은소스 불러올 때 쓰기

구조 : mainPage.jsp (footer페이지포함) <- 이동경로-> sub.jsp (footer페이지포함)

--- inclue -> mainPage.jsp----

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

pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

<h3>프론트 페이지 </h3>

<a href = "sub.jsp">서브페이지로 이동하기</a><br>

<%@ include file= "footer.jsp" %>

</body>

</html>

----------------

--footer.jsp---

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

pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

<div id ="copyright">

<hr>

All contents Coptyright 2014 Nonage Inc. all right reserved<br>

Contact mail : Nonage@Nonage.com Tel: +82 64 123 4315 Fax +82 64 1234321

</div>

</body>

</html>

----

--sub.jsp---

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

pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

<h3> 서브페이지</h3>

<a href = "mainPage.jsp">메인페이지로 되돌아가기</a>

<%@ include file="footer.jsp" %>

</body>

</html>

-------------

'it' 카테고리의 다른 글

시간복잡도  (0) 2023.05.26
RAD 모델 - 소프트웨어공학  (0) 2023.05.25
jsp 체크박스로 체크한값 불러오기  (0) 2023.05.23
서버단 jsp -1 (DB구축)  (0) 2023.05.22
HashSet - Set  (0) 2023.05.21
댓글