Advertisement
Guest User

jsp nested loop

a guest
Feb 13th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.     <c:forEach begin="0" end="${height}" var="i" varStatus="status1">
  2.         <div>
  3.         <c:forEach begin="0" end="${widht}" var="j" varStatus="status2">
  4.             <button class="btn btn-default">${i*height +j}</button>
  5.         </c:forEach>
  6.         </div>
  7.     </c:forEach>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement