<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
form{
border : 1px solid blue;
margin : 10px;
padding : 20px;
}
</style>
</head>
<body>
<h2>서버로 데이터 전송 - post</h2>
<form action ="post.jsp" method="post">
아이디<input type="text" name="id"> <br>
비밀번호<input type="password" name="pass"> <br>
<input type="submit" value="전송">
</form>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<style>
h1{
color : red;
background : yellow;
}
p{
font-size : 1.2em; /*16px -> 1.0em 32px -2.0em */
border : 1px solid blue;
}
div{
background : pink;
padding : 10px;
font-size : 2.0em;
}
</style>
</head>
<body>
<h1> JSP : JAVA Servr Page</h1>
<p>안녕하세여 jsp입니다</p>
<p>클라이언트에서 전송되는 데이터를 받아서 처리를 하는 page입니다</p>
<p>기본 바탕은 html이고 자바 문장을 기술하여 처리 할 수 있습니다</p>
<%
String userId = request.getParameter("id");
String userPass = request.getParameter("pass");
%>
<div>
<%=userId %>님 환영합니다<br>
<%=userPass %>는 비밀번호 입니다
</div>
</body>
</html>