include 지시어 

: 현재  jsp파일에 다른 jsp/html문서를 포함시킨다.

<%@include file="포함할 파일명" %>

 

[main.jsp]

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
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<style>
    table {width:70%;}
</style>
</head>
<body>
<%@include file="title.jsp" %>
<%@include file="menu.jsp" %>
<center>
    <table>
        <tr>
            <td><%@include file="content.jsp" %></td>
            <td width="50px"> </td>
            <td><%@include file="content.jsp" %></td>
        </tr>
    </table>
</center>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

 

[title.jsp]

1
2
3
4
5
6
7
8
9
10
11
12
13
<%@ 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>
    <h2 align="center">include 지시어 테스트</h2>
    <hr>
</body>
</html>
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

 

[menu.jsp]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<style>
    div {width:100%; height:50px;text-align:center;}
    a {position:relative; font-size:20px;margin-right:20px; text-decoration:none;}
 
</style>
</head>
<body>
    <center>
        <div>
            <a href="" >[home]</a>
            <a href="" >[info]</a>
            <a href="" >[photo]</a>
            <a href="" >[list]</a>
        </div>
    </center>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

 

[content.jsp]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%@ 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>
<div >
    <h2>title</h2>
    <p style="border:1px black solid">여기는 내용이 들어갈것입니다.동해물과 백두산이 마르고 닳도록 하느님이 보우하사 우리나라만세</p>
</div>
</body>
</html>
 
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4f; text-decoration:none">Colored by Color Scripter
 

'Servlet & JSP' 카테고리의 다른 글

HTTP 응답 상태  (0) 2019.06.20
JSP 예제_includeAction  (0) 2019.06.20
JSP 예제_page  (0) 2019.06.20
JSP 주석  (0) 2019.06.20
JSP 예제_계산기  (0) 2019.06.20

+ Recent posts