Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

INSERT 본문

JSP/MVC2

INSERT

GAWON 2023. 6. 9. 18:06
<%@ 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>
<script type="text/javascript">
	function send(f){ //send함수 만들기 form으로 화면이동
		f.action ='/chapter17_mvc2/Controller';
		f.submit();
	}

</script>
</head>
<body>
	<div>
		<form method="post">
			<table>
				<tbody>
					<tr>
						<td>이름</td>
						<td><input type="text" name="name"></td>
					</tr>
					<tr>
						<td>나이</td>
						<td><input type="number" name="age"></td>
					</tr>
					<tr>
						<td>연락처</td>
						<td><input type="text" name="phone"></td>
					</tr>
					<tr>
						<td>주소</td>
						<td><input type="text" name="addr"></td>
					</tr>
					<tr>
						<td>자기소개</td>
						<td>
							<textarea rows="3" cols="50" name="self"></textarea>
						</td>
					</tr>
					<tr>					
						<td colspan="2">
							<input type="button" value="전송" onclick="send(this.form)">
						</td>	
					</tr>
				</tbody>
			</table>
		</form>
	</div>
</body>
</html>

'JSP > MVC2' 카테고리의 다른 글

OUTPUT  (0) 2023.06.09
PersonVO  (0) 2023.06.09
PersonAction  (0) 2023.06.09
Controller  (0) 2023.06.09