Is it possible to loop vertically ? I want to display in JSP by using JSTL foreach . The value is date which is retrieved from database.
Normally looping will be like this :
<td>12-12-2011</td>
<td>12-12-2011</td>
<td>12-12-2011</td>
<td>12-12-2011</td>
But now I want to display the data like this way :
<td>12-12-2011</td> <td>12-12-2011</td> <td>12-12-2011</td> <td>12-12-2011</td>