note

JSP 리다이렉트(redirect)이용해서 페이지 이동하기 본문

JSP/기본

JSP 리다이렉트(redirect)이용해서 페이지 이동하기

투한 2012. 2. 6. 10:11



responseA.jsp 실행화면




responseA.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>responseA</title>
</head>
<body>
현재 페이지는 responseA입니다. 화면에 보여지지 않습니다.
</body>
</html>
<%
	response.sendRedirect("/chap03/responseB.jsp");
%>


위에 HTML 부분은 모두 없는게 일반적(표시가 되지 않기 때문에)




responseB.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!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=UTF-8">
<title>responseB</title>
</head>
<body>
responseB.jsp 입니다.
</body>
</html>