본문 바로가기
JSTL & EL & Action Tag/EL

EL (2_result)

by pms93 2022. 10. 12.
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
    
<%
	String id = request.getParameter("id"), pw = request.getParameter("pw");
%>

<h1> request.getParameter("name")을 통한 출력</h1>
	아이디 : <%= id %> <br>
	비밀번호 : <%= pw %> <br><br>
	
<h1> param.name을 통한 출력 </h1>
	아이디 : ${ param.id } <br>
	비밀번호 : ${ param.pw }

'JSTL & EL & Action Tag > EL' 카테고리의 다른 글

EL 내장객체(Implicit Object 2)  (0) 2022.10.12
EL 내장객체(Implicit Object 1)  (0) 2022.10.12
EL (2_form)  (0) 2022.10.12
EL (1)  (0) 2022.10.12