2024-12-19


<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
int res = 45 + 171;
// 현재 페이지에서만 유효
pageContext.setAttribute("Res", res);
request.setAttribute("R", 1000);
session.setAttribute("S", 10000);
application.setAttribute("A", 100000);
request.getRequestDispatcher("Ex06.jsp").forward(request, response);
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h3>
결과(EL) >>> ${ Res }
</h3>
</body>
</html>'JSP > 기초 내용 정리' 카테고리의 다른 글
| JSP(EL)_07 (0) | 2024.12.19 |
|---|---|
| JSP(EL)_06 (0) | 2024.12.19 |
| JSP(EL)_04 (0) | 2024.12.19 |
| JSP(EL)_03 (0) | 2024.12.19 |
| JSP(EL)_02 (0) | 2024.12.19 |