input.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<form action="result.jsp" method="post">
이름 : <input type="text" name="text"><br><br>
좋아하는 스포츠<br>
배드민턴 <input type="checkbox" name="sports" value="배드민턴">
야구 <input type="checkbox" name="sports" value="야구">
농구 <input type="checkbox" name="sports" value="농구">
축구 <input type="checkbox" name="sports" value="축구">
<br><br>
<input type="submit" value="전송">
</form>
</body>
</html>
result.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<%
request.setCharacterEncoding("EUC-KR");
%>
이름 : ${param.text }<br><br>
좋아하는 스포츠<br><br>
${paramValues.sports[0]}
${paramValues.sports[1]}
${paramValues.sports[2]}
${paramValues.sports[3]}
</body>
</html>
'Programming > Servlet & JSP' 카테고리의 다른 글
JSTL 연습하기 (0) | 2020.02.24 |
---|---|
쿠키 값 읽어오기 (0) | 2020.02.23 |
EL 연습하기 (0) | 2020.02.23 |
url option (0) | 2020.02.23 |
랜덤 당첨 (0) | 2020.02.23 |