// template.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>
<%
String item = request.getParameter("name")+".jsp";
if(request.getParameter("name") == null){
item = "newitem.jsp";
}
%>
<table border="1" >
<tr>
<td colspan="2">
<jsp:include page="top.jsp"/>
</td>
</tr>
<tr>
<td>
<jsp:include page="left.jsp"/>
</td>
<td>
<jsp:include page="<%=item %>"/>
</td>
</tr>
<tr>
<td colspan="2">
<jsp:include page="bottom.jsp"/>
</td>
</tr>
</table>
</body>
</html>
// left.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%
request.setCharacterEncoding("euc-kr");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<div align = "center">
<a href="?name=newitem">신상품</a>
<br><br>
<a href="?name=bestitem">인기상품</a>
</div>
</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>
<a href="">Login</a> | <a href="">Join</a>
</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>
<div align = "center">
Since 2021
</div>
</body>
</html>
// newitem.jps / bestitem.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>
<div align="center">
<b>신상품 목록입니다</b>
</div>
</body>
</html>
/////////////////////////////////////////////////////////////////////////////////////////////
<%@ 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 align="center">
<b>인기상품 목록입니다</b>
</div>
</body>
</html>
반응형
'자바과정 > JSP' 카테고리의 다른 글
JSP 파일 업로드 (0) | 2021.03.12 |
---|---|
JSP 회원가입 (자바빈즈 사용) (0) | 2021.03.10 |
JSP 실습 application과 session (scope) (0) | 2021.03.10 |
JSP 장바구니(로그아웃, 페이지 4개, 빈 장바구니 처리, 아이디 공백처리) (0) | 2021.03.10 |
JSP 예습겸 Scope (0) | 2021.03.08 |
댓글