본문 바로가기
웹프로그래밍/JSP

include 페이지 모듈화

by 폴더맨 2024. 6. 8.

include 페이지 모듈화

<%@ page contentType="text/html; charset=euc-kr"%>
<HTML>
<BODY>
	<table width=400 border=1>
		<tr>
			<td colspan=2><jsp:include page="top.jsp" flush="false" /></td>
		</tr>
		<tr>
			<td><jsp:include page="menu.jsp" flush="false" /></td>
			<td><jsp:include page="contents.jsp" flush="false" /></td>
		</tr>
	</table>
</BODY>
</HTML>

'웹프로그래밍 > JSP' 카테고리의 다른 글

include 액션태그 데이터  (0) 2024.06.08
param 액션태그  (0) 2024.06.08
include 액션 태그  (0) 2024.06.08
속성 데이터 공유  (0) 2024.06.08
out 객체와 버퍼  (0) 2024.06.08