Changes between Version 6 and Version 7 of jstl

차이점 주위로
다음 차이점은 무시하기:
작성자:
anonymous (IP: 221.150.127.103)
날짜/시간:
2012-10-17 PM 5:46:28 (13 년 전)
설명:

--

Legend:

변경되지 않음
추가됨
제거됨
변경됨
  • jstl

    v6 v7  
    1818</head> 
    1919<body> 
    20 ${result[0].title} 
    2120<div align="center"> 
    2221        <h1>게시판 리스트</h1> 
    2524                        <th>번호</th><th>제목</th><th>등록자</th><th>등록일</th> 
    2625                </tr> 
     26                <c:forEach items="${result }" var="item"> 
     27                <tr> 
     28                        <td>${item.seq }</td> 
     29                        <td>${item.title }</td> 
     30                        <td>${item.writer }</td> 
     31                        <td>${item.regdate }</td>  
     32                </tr> 
     33                </c:forEach>             
    2734        </table> 
    2835</div>