forwardTest.jsp
페이지 정보
본문
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Forward Action Test</title>
</head>
<body>
<h2>포워드 액션 테스트</h2>
<form action="forwardTest1.jsp" method="POST">
<input type="hidden" name="forwardPage" value="forwardTest2.jsp">
<table>
<tr>
<td>이름 </td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td>나이 </td>
<td><input type="text" name="age"></td>
</tr>
<tr>
<td>주소 </td>
<td><input type="text" name="address"></td>
</tr>
<tr><td><input type="submit" value="전송"></td></tr>
</table>
</form>
</body>
</html>
- 이전글● 액션 태그 - forward 21.07.15
- 다음글forwardTest1.jsp 21.07.15
댓글목록
등록된 댓글이 없습니다.