본문 바로가기
웹프로그래밍/JSP

forward 액션태그

by 폴더맨 2024. 6. 8.

forward 액션태그1

<%@ page language="java" contentType="text/html; charset=EUC-KR"%>
<HTML>
<BODY>
	<%
		request.setAttribute("name", "Jimmy");
		request.setAttribute("phone", "010-1111-2222");
	%>
	<h2>7-8페이지입니다.</h2>
	<jsp:forward page="7-9.jsp" />
</BODY>
</HTML>

 

forward 액션태그2

<%@ page language="java" contentType="text/html; charset=EUC-KR"%>
<HTML>
<BODY>
	<h2>여기는 7-9.jsp 페이지입니다.</h2>
	<%=request.getAttribute("name")%><br>
	<%=request.getAttribute("phone")%><br>
</BODY>
</HTML>

 

세상을 링크하라!!! 모든 링크를 한 자리에...
링크닷컴: https://linkdotcom.mycafe24.com/

 

유용한 링크, 링크닷컴 #무료 #링크사이트 #링크사이트

컴퓨터 및 일반 유용한 링크들을 모아 놓았습니다. 지금 바로 확인하세요!

linkdotcom.mycafe24.com

 

 

'웹프로그래밍 > JSP' 카테고리의 다른 글

쿠키 변경  (0) 2024.06.08
쿠키 읽기  (0) 2024.06.08
include 액션태그 데이터  (0) 2024.06.08
param 액션태그  (0) 2024.06.08
include 페이지 모듈화  (0) 2024.06.08