728x90
<c:forEach items="${gamelist}" var="b" varStatus="status">
[${status.index}]: ${gamelist[status.index]}
<TR>
<TD>${b.gameid}</TD>
<TD>${b.displaytype}</TD>
<TD>${b.displayno}</TD>
<TD>${b.gamelink}</TD>
<td><c:if test="${b.ishidden=='T'}"><span style="color:red">Hidden</span></c:if></td>
<td>${b.lang}</td>
<td><a href="javascript:edit(${b.bid})">[Edit]</a></td>
</TR>
</c:forEach>
.index는 0부터 시작하고
.count는 1부터 시작한다.
출처 : http://jsonlee.tistory.com/52
'프로그래밍 > JSP' 카테고리의 다른 글
[jsp] remoteAddr 이 IPv6 주소를 리턴할때 IPv4로 바꾸는 방법 (0) | 2014.12.02 |
---|---|
클라이언트 실제 IP 확인하기 (0) | 2014.12.02 |
JSTL 변수를 스크립트릿에서 사용하는방법 (0) | 2014.11.29 |
오라클 mysql DB 연동 부분 (0) | 2014.10.08 |
[스트랩][JSP]한글파라미더 UTF-8처리 (쿠키 cookie 예제) (0) | 2014.10.01 |