728x90
반응형
<%@ 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> <h4>------- 현재 페이지 영역 -------</h4> <%@ include file="06_07_include01_header.jsp" %> <!-- include 소스코드를 복사해서 그대로 가져온다 --> </body> </html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <h4>헤더 페이지 영역입니다</h4>
06_08_include02.jsp
06_08_include02_header.jsp
06_08_include02_footer.jsp
06_08_include.jsp - include를 이용한 header, footer06_08_include02_header.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%! int pageCount = 0; void addCount(){ pageCount++; } void resetCount(){ pageCount = 0; System.out.println("출력"); } %> <% addCount(); %> <p>이 사이트 방문은 <%=pageCount %>번째 입니다.</p>
06_08_include02.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="06_08_include02_header.jsp" %> <p>방문해 주셔서 감사합니다.</p> <%@ include file="06_08_include02_footer.jsp" %> </body> </html>
06_08_include02_footer.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> Copyright © JSPBook
728x90
반응형
'[JAVA]' 카테고리의 다른 글
[JSP] Enumeration - form, table (0) | 2024.03.14 |
---|---|
[JSP] request_process (0) | 2024.03.13 |
[JSP] 08_01_.jsp - 액션태그 <jsp:include / forward> (0) | 2024.03.13 |
[JSP] 03_01_scriptlet.jsp - 덧셈, 짝수 (0) | 2024.03.12 |
[JSP] 04_01_expression.jsp - Date/ 05_02_welcome.jsp - bootstrap/ 06_03_page_errorPage.jsp - error (0) | 2024.03.12 |