비전공개미 개발노트
[JSP] include로 header / footer 붙이기 본문
반응형
SMALL
header.jsp
<%@ 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>
Footer내용
</body>
</html>
footer.jsp
<%@ 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>
Footer내용
</body>
</html>
ex10.jsp
<%@ 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>
<%@ include file="header.jsp" %>
<hr>
본문내용
<hr>
<%@ include file="footer.jsp" %>
</body>
</html>
[출력]
1번째 방문입니다
--------------------------------------------------------------------
본문내용
--------------------------------------------------------------------
Footer내용
반응형
LIST
'프로그래밍 > JSP' 카테고리의 다른 글
[JSP] jsp:include를 사용해 페이지 불러오기 (1) | 2022.10.11 |
---|---|
[JSP] jsp:forward를 사용해 페이지 불러오기 (1) | 2022.10.11 |
[JSP] web.xml파일을 이용해 초기 id, pw 설정 및 확인 (0) | 2022.10.11 |
[JSP] 값이 틀릴시 errorPage로 이동 (0) | 2022.10.11 |
[JSP] 기초, HTML에서 사용방법 (1) | 2022.10.11 |
Comments