아이디 비밀번호 get
서버로 데이터 전송 - get
아이디비밀번호
<!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>서버로 데이터 전송 - get</h2>
<form action ="get.jsp" method="get">
아이디<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>
Author And Source
이 문제에 관하여(아이디 비밀번호 get), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@susan9905/아이디-비밀번호저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)