본문 바로가기
웹 프로그래밍

EL 03, 04

by Minius 2018. 4. 24.
반응형

<%@ 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>

</head>

<body>

<form action="el04.jsp" method="get">

아이디: <input type="text" name="id" id="" /> <br />

비밀번호: <input type="password" name="passwd" id="" /> <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>

</head>

<body>

<%

String id = request.getParameter("id");

String passwd = request.getParameter("passwd");

%>


아이디: <%=id %> <br />

비밀번호: <%=passwd %> <br />

<hr />

아이디: ${param.id} <br />

비밀번호: ${param.passwd }

</body>

</html>


아이디: qwer 

비밀번호: asdf 

아이디: qwer 
비밀번호: asdf


'웹 프로그래밍' 카테고리의 다른 글

JSP Scope 영역에 대한 정의  (0) 2018.04.24
context.xml  (0) 2018.04.24
EL 2  (0) 2018.04.24
웹 표준  (0) 2018.04.02
HTML / CSS 학습 사이트  (0) 2018.03.08

댓글