StudyJSP - jsp8-jdbc - deleteForm.jsp

모쿠모쿠·2022년 6월 30일

JSP

목록 보기
83/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>deleteForm.jsp</h1>
    <form action="deletePro.jsp" metiod="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>
            	<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

deleteForm.jsp

이름
나이
profile
Hello, Velog!

0개의 댓글