//checkBox.jsp
<%@ 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>
<form action="checkBoxProc.jsp" name="f1">
<input type="checkbox" name="c1" value="1">1<br>
<input type="checkbox" name="c1" value="2">2<br>
<input type="checkbox" name="c1" value="3">3<br>
<input type="checkbox" name="c1" value="4">4<br>
<input type="checkbox" name="c1" value="5">5<br>
<input type="submit" value="전송">
</body>
</html>
===========================================
//checkBoxProc.jsp
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%
String[] str = request.getParameterValues("c1");
%>
<%for(int i=0;i<str.length;i++){
%>
<%=str[i] %><br>
<%} %>
'JSP' 카테고리의 다른 글
[ JSP ] 게시판 페이지 분할 네비게이션 관련 식 모음 (0) | 2009.03.22 |
---|---|
[ JSP ] jsp 파일 파싱 에러 (0) | 2009.03.12 |
[ JSP ] P3P 정책(익스플로러 6 이상부터 적용됨)-session끊기는 현상 (0) | 2008.11.03 |
[ JSP ] 동적 테이블 변경을 받아서 자바에서 처리 (0) | 2008.10.24 |
[ JSP ] cos.jar(오라일리)의 파일 업로드(한글 깨짐 수정) (0) | 2008.10.24 |
댓글