I have the following code:
<%
for (int i = 0; i < rs.getFetchSize(); i++) {
System.out.print("test");
//blah
%>
<div id="Test<%= out.print(i) %>">
<div class="<%= oddOrEven(i)%>Header">
<div class="<%= oddOrEven(i)%>A">Test<% out.print(i);%></div>
<div class="<%= oddOrEven(i)%>B">
//Stuff here
Odd or Even simply responds with the word odd or even based on the number i passed to it, that should make my css style alternate between grey colors.
When I compile the page it works, but this part is totally omitted and doesn't appear in the source. Can someone help me get this working?