12주차 - jsp (11) getParameter() 로 <textarea> 의 값 출력하기
2022. 9. 21. 21:34ㆍjsp/jsp
이번의 목표
01. getParameter() 를 이용하여 textarea의 값을 출력해보자.
지난시간에는 getParameter()를 사용해서 <input type="text">, <input type="checkbox"> 의 값들을 출력하는 것을 해봤습니다.
이번에는 <textarea>의 값을 받아와서 출력하는 것을 해보겠습니다.
01. 데이터 전송 페이지 코드
02. 데이터 출력 페이지 코드
03. 실행 화면
01. 데이터 전송 페이지 코드
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>ex04_form</title>
</head>
<body>
<form action="infoResult.jsp" method="post">
<label>ID</label> <input type="text" name="id"><br>
<label>Password</label> <input type="password" name="pw"><br>
<label>자기소개</label><br>
<textarea rows="10" cols="50" name="info"></textarea><br>
<input type="submit" value="전송"> <input type="reset" value="초기화">
</form>
</body>
</html>
02. 데이터 출력 페이지 코드
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
request.setCharacterEncoding("UTF-8");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>04_result</title>
</head>
<body>
<h3>입력한 정보는 아래와 같습니다.</h3>
ID :<%=request.getParameter("id")%><br>
Password :<%=request.getParameter("pw")%><br>
자기소개 :<%=request.getParameter("info")%><br>
</body>
</html>
03. 실행 화면
'jsp > jsp' 카테고리의 다른 글
12주차 - jsp (13) getParameter() 으로 <select>의 값을 출력하기 (0) | 2022.09.22 |
---|---|
12주차 - jsp (12) getParameter() 로 <input type="radio">의 값 출력하기 (0) | 2022.09.22 |
12주차 - jsp (10) getParameterValues() 로 다중 선택이 가능한 <input>의 값을 출력하기 (0) | 2022.09.21 |
12주차 - jsp (9) getParameter()로 type="text", type"password"인 <input>의 값 출력하기 (0) | 2022.09.21 |
12주차 - jsp (8) request (0) | 2022.09.21 |