실행 소스
<?xml version="1.0" encoding="EUC-KR" ?>
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<% String cp = request.getContextPath(); %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR" />
<title>JSTL 2</title>
</head>
<body>
<!-- JSTL을 이용한 구구단 -->
<table align="center" border="1">
<c:forEach var="i" begin="1" end="9">
<tr>
<c:forEach var="j" begin="2" end="9">
<c:if test="${j%2==1 }">
<td>${j } x ${i } = ${i*j }</td>
</c:if>
</c:forEach>
</tr>
</c:forEach>
</table>
</body>
</html>
실행 결과
'Dev. 웹 > HTML.JSP' 카테고리의 다른 글
jquery, javascript 사용하여 iframe 객체에 접근하기 (2) | 2013.02.19 |
---|---|
[Servlet] Eclipse 에서 필터(Filter) 사용하기 ( post 방식의 한글처리 Filter를 이용하여 자동으로 처리하기 ) (0) | 2012.09.19 |
자바 JSP Model 1 이용한 방명록 만들기 (0) | 2012.09.19 |
EL (Expression Language) 시작하기 - 기초 (0) | 2012.09.19 |
JSP( Java Server Pages ) 시작하기 - 기초 (0) | 2012.09.19 |