DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Alternating Rows
// description of your code here
<% if ( j % 2 == 0) { %>
<tr class="TBGG2">
<% } else { %>
<tr class="TBGG1">
<% } %>






Comments
Victor Tolbert replied on Tue, 2005/12/13 - 10:55pm
<% String rowClass = " "; if ( j % 2 == 0) { rowClass = "even"; } else { rowClass = "odd"; } %>">