-
JSP 페이지 디렉티브 - Includejsp(Model1) 2020. 5. 15. 16:51
포함하는 jsp페이지에 <%@ include file = "포함될 jsp파일">을 해주면 한 페이지 안에 포함되는 jsp파일을 넣을 수 있다.
Main페이지
<%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Insert title here</title> </head> <body> <center> <table width="600"> <!-- Top --> <tr height="150"> <td width="600" align="center"> <%@ include file="Top.jsp" %> </tr> <!-- center --> <tr height="400"> <td width="600" align="center"> <img alt="" src="image/images.jpg" width="400" height="300"> </td> </tr> <!-- Bottom --> <tr height="100"> <td width="600" align="center"> <%@ include file="Bottom.jsp" %> </tr> </table> </center> </body> </html>
Top.jsp(상단)
<%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Insert title here</title> </head> <body> <center> <table width="600"> <tr height="100"> <td align="center" colspan="6"> <font size="15">Camera 정보 사이트</font> </td> </tr> <tr height="50"> <td align="center">캐논</td> <td align="center">캐논</td> <td align="center">캐논</td> <td align="center">캐논</td> <td align="center">캐논</td> <td align="center">캐논</td> </tr> </table> </center> </body> </html>
Bottom.jsp(하단)
<%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Insert title here</title> </head> <body> <center> <table width="600"> <tr height="100"> <td align="center" > 회사소개<br> 전화번호:000-000-0000 </td> </tr> </table> </body> </html>
참조 : 인프런 - JSP웹 쇼핑몰 프로그래밍 기본 과정(JSP WEB Programming) - JSP 페이지 디렉티브
'jsp(Model1)' 카테고리의 다른 글
JSP와 데이터베이스연동2(DAO패턴 적용) (0) 2020.05.17 JSP와 데이터베이스 연동1 (0) 2020.05.16 JSP 액션태그 (0) 2020.05.15 JSP 페이지 스크립트 요소 (0) 2020.05.10 페이지 디렉티브 (0) 2020.05.10