Develop

[jsp] 초간단한 include 구문 예제..

by hooni posted Apr 23, 2013
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
누가 달라고 해서 급 작성한거.. ㅋㅋ

<%@ page contentType="text/html; Charset=EUC-KR" %>

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title>여기는 테스트 페이지입니다.</title>
</head>
<body>

<table border=0 cellpadding=5 cellspacing=1 bgcolor=#CCCCCC>
<tr bgcolor=#FFFFFF>
    <td>
        여기는 그냥 페이지 부분입니다.
    </td>
    <td>
        <!-- 퀵 메뉴를 삽입하고 싶은 곳에 다음 구문을 적어줍니다 -->
        <%@ include file="./quick_menu.jsp" %>
    </td>
</tr>
</table>

</body>
</html>