동적include 명령

1040 단어
index.jsp 페이지 코드
<%@ page contentType="text/html;charset=GBK" language="java" errorPage="" %>
<html>
<head>
	<title>jsp:include  </title>
</head>
<body>
	<jsp:include page="include.jsp">
		<jsp:param name="age" value="291" />
	</jsp:include>
</body>
</html>

include.jsp 페이지 코드
<%@ page contentType="text/html;charset=GBK" language="java"%>
<html>
<head>
	<title>jsp:include  </title>
</head>
<body>
	<%
	out.write(request.getParameter("age"));
	%>
</body>
</html>

동적include 명령은 정적include 명령과 다르다. 정적include 명령은 다른 페이지의 코드를 현재 페이지 클래스에 통합시킨다. 동적include 명령은include 방법을 이용하여 목표 페이지를 가져오는 것이다. 동적include 명령은forward 명령과 유사하고 매개 변수를 전달할 수 있다.Ward 명령은 목표 페이지가 현재 페이지를 바꾸는 것입니다. (페이지 제목이 바뀌고 주소 표시줄이 변하지 않습니다.) 동적include 명령은 목표 페이지가 현재 페이지에 삽입되는 것입니다. (페이지 제목이 변하지 않고 주소 표시줄도 변하지 않습니다.)

좋은 웹페이지 즐겨찾기