StudyJSP - jsp9_jdbc - testForm.jsp

모쿠모쿠·2022년 6월 30일

JSP

목록 보기
85/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>testForm.jsp</h1>
	<form action="testPro.jsp" method="post">
		<table border="1">
			<tr>
				<th>번호</th>
				<td><input type="text" name="idx"></td>
			</tr>
			<tr>
				<th>이름</th>
				<td><input type="text" name="name"></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

testForm.jsp

번호
이름
profile
Hello, Velog!

0개의 댓글