Notice
Recent Posts
Recent Comments
Link
«   2024/06   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

input.jsp / output.jsp 본문

SPRING/chapter03_MVC

input.jsp / output.jsp

GAWON 2023. 6. 27. 18:46
<%@ 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>
	<form action="member/result" method="post">
		아이디 : <input type="text" name="id"><br>
		비밀번호 : <input type="password" name="pw"><br>
		<input type="submit" value="전송">
		<input type="reset" value="다시 전송">
	</form>
</body>
</html>
<%@ 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>
	${id }
	${pw }
</body>
</html>

'SPRING > chapter03_MVC' 카테고리의 다른 글

StudentDto.java / index.jsp  (0) 2023.06.27
home.jsp  (0) 2023.06.27
SampleController.JAVA  (0) 2023.06.27
HomeController.JAVA  (0) 2023.06.27
spring 환경설정 및 라이브러리 저장방법(chapter03_MVC)  (0) 2023.06.27