반응형
위 이미지는 forward 액션 태그를 사용하여 나타낼 수 도 있지만 include 태그를 사용하여 똑같이 보여질 수 있다.
foward_action2.jsp 페이지에서 param태그로 넘겨준 뒤 page_control_end.jsp 페이지에서 request를 사용하여 불러오면 된다.
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<form method="post" action="forward_action2.jsp">
forward action : <input type="text" name="username">
<input type="submit" value="확인">
</form>
</body>
</html>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<jsp:include page="page_control_end.jsp">
<jsp:param name="tel" value="000-000-0000"/>
</jsp:include>
</body>
</html>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
page_control_end.jsp
이름 : <%=request.getParameter("username")%>
전화번호 : <%=request.getParameter("tel")%>
</body>
</html>
반응형
'Web' 카테고리의 다른 글
[JSP] include 액션 태그를 이용한 페이지 이동 (중복된 공간) (1) | 2022.09.16 |
---|---|
http 주요 에러코드 (0) | 2022.09.15 |
HTTP 와 HTTPS 의 차이 (4) | 2022.09.15 |
[자바스크립트] 회원가입페이지 정규표현식X (0) | 2022.09.14 |
[자바스크립트] 회원가입 페이지 만들기 (정규표현식O) (0) | 2022.09.14 |