<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
int sum = 0;
for(int cnt = 1 ; cnt <= 100 ; cnt++) sum += cnt;
request.setAttribute("result", new Integer(sum));
%>
<!-- forward 구문은 페이지 가장 끝에 써줌 -->
<jsp:forward page="HundredResult.jsp"></jsp:forward
HundredResult.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSP</title>
</head>
<body>
1부터 100까지 더한 값은?? ${result }<br>
</body>
</html>
'JAVA > JSP & Servlet' 카테고리의 다른 글
표준 액션(standard action) : useBean (scope) (0) | 2013.03.22 |
---|---|
표준 액션(standard action) : useBean (0) | 2013.03.22 |
표준 액션(standard action) : Include (0) | 2013.03.22 |
expression language 태그라이브러리(TLD) [직접 작성한 메서드 호출] (0) | 2013.03.22 |
expression language 태그라이브러리(TLD) [자바의 정적 메서드 호출] -설정- (0) | 2013.03.21 |