* jstl.jar
* standard.jar
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!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>
<div align="center">
<h1>게시판 리스트</h1>
<table border="1">
<tr>
<th>번호</th><th>제목</th><th>등록자</th><th>등록일</th>
</tr>
<c:forEach items="${result }" var="item">
<tr>
<td>${item.seq }</td>
<td>${item.title }</td>
<td>${item.writer }</td>
<td>${item.regdate }</td>
</tr>
</c:forEach>
</table>
</div>
</body>
</html>