Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Servlet
- 웹소켓
- tiles.xml
- 블록체인
- PL/SQL
- 도커
- node.js
- autowired
- AWS
- Ajax
- 비트코인
- HTML
- docker
- 배포
- 알고리즘
- jQuery
- model1
- Spring
- JSP
- websocket
- EC2
- JavaScript
- 웹게임
- CSS
- 암호화
- SQL
- phaser
- RDS
- express
- Cookie
Archives
- Today
- Total
記錄
jsp액션태그 - forward, param, include 본문
forward시에 url값은 변하지 않는다!!
실습예제)
t01에서 t02로 param을 보낸다
t02에서 t01의 param을 받아서 출력 + include로 t03의 내용을 출력
t01
<%@ 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>
<jsp:forward page="t02.jsp">
<jsp:param name = "id" value = "surhomme" />
<jsp:param name = "pw" value = "12345" />
</jsp:forward>
</body>
</html>
cf) jsp:forward 구문이 시작되어도 ' / ' <--를 만나기 전까지는 페이지 이동이 실행되지 않는다고 보는 것이 이해하기 좋다. 그러니 /jsp:forward 사이에 있는 정보들이 전송되는 것이다.
t02
<%@ 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>
<jsp:include page="t03.jsp" />
t02 페이지 입니다 <br/>
t01 에서 받은 id와 비밀번호는 <br/>
<%
String id = request.getParameter("id");
String pw = request.getParameter("pw");
out.println(id + "<br/>");
out.println(pw);
%>
</body>
</html>
t03
<%@ 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>
t03 페이지 입니다 <br/>
</body>
</html>
'Web > JSP' 카테고리의 다른 글
세션(session) (0) | 2017.12.04 |
---|---|
쿠키(Cookie) (0) | 2017.12.04 |
request, response (0) | 2017.12.01 |
선언<%! >, 표현식<%= >, 지시자<%@ >, 주석처리 (0) | 2017.12.01 |
스크립트릿 (0) | 2017.12.01 |
Comments