StudyJSP - jsp8_jdbc - insertForm.jsp

모쿠모쿠·2022년 6월 25일

JSP

목록 보기
73/151
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h1>insertForm.jsp</h1>
    <form action="insertPro.jsp" method="post">
    	<table border="1">
        	<tr>
            	<th>이름</th>
                <td><input type="text" name="name"></td>
            </tr>
            <tr>
            	<th>나이</th>
                <td><input type="text" name="age"></td>
            </tr>
            <tr>
            	<th>성별</th>
                <td>
                	<input type="radio" name="gender" value=""><input type="radio" name="gender" value=""></td>    
            </tr>
            <tr>
            	<th>취미</th>
                <td>
                	<input type="checkbox" name="hobby" value="여행">여행
                    <input type="checkbox" name="hobby" value="독서">독서
                    <input type="checkbox" name="hobby" value="게임">게임
                </td>
            </tr>
            <tr>
            	<td colspan="2">
                	<input type="submit" value="전송">
                </td>
            </tr>
        </table>
    </form>
</body>
</html>

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>

Insert title here

insertForm.jsp

이름
나이
성별
취미 여행 독서 게임
profile
Hello, Velog!

0개의 댓글