********  Template.jsp *********************

<%@ 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 http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<table width="640" border="1">
<tr>
 <td>
  <jsp:include flush="true" page="/ch05/module/Top.jsp"></jsp:include>
 </td>
</tr>
<tr>
 <td height="400">
   <jsp:include flush="true" page="/ch05/module/Main.jsp"></jsp:include>
 </td>
</tr>
<tr>
 <td>
   <jsp:include flush="true" page="/ch05/module/Bottom.jsp"></jsp:include>
 </td>
</tr>
</table>
</body>
</html>



*******   module/Bottom.jsp ***********
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
    <!--
 Bottom.jsp   
    -->
    하단의 영역
     <img src="<%=request.getContextPath() %>/ch05/images/bottom.jpg">




**********    module/ Main.jsp      ***********
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
    <!--
 Main.jsp
    -->
    컨텐츠 영역
     <img src="<%=request.getContextPath() %>/ch05/images/contents.jpg">



***********  Module/Top.jsp   ***********
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
    <!--
     Top.jsp
 -->
 상단의 영역
 <img src="<%=request.getContextPath() %>/ch05/images/top.jpg">


******   sports/Template.jsp   *******
<%@ 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 http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body bgcolor="black">
<!--
1.웹로드 자원은 풀패스를 기술..
2.include내에서는 풀패스 불필요.
-->
<table width="640" border="1" bgcolor="white">
<tr>
 <td >
  <jsp:include flush="true" page="/ch05/module/Top.jsp"></jsp:include>
 </td>
</tr>
<tr>
 <td height="400">
   <jsp:include flush="true" page="/ch05/module/Main.jsp"></jsp:include>
 </td>
</tr>
<tr>
 <td>
   <jsp:include flush="true" page="/ch05/module/Bottom.jsp"></jsp:include>
 </td>
</tr>
</table>
</body>
</html>
Posted by 말없제이
,