본문 바로가기

개발하자/JSP&Servlet

EL)param

주소창: http://localhost:8090/jsp_test1/test2.jsp?a=100&b=200&c=b

============================================================

 

<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
${param.a}
${param.b}
${param.c}
</body>
</html>

'개발하자 > JSP&Servlet' 카테고리의 다른 글

EL)requestScope  (0) 2015.03.12
EL)paramValues  (0) 2015.03.12
쿠키 이용한 아이디 기억하기 예제  (0) 2015.03.11
useBean  (0) 2015.03.10
doPost  (0) 2015.03.05