JSP Loop

I have the following JSP code, with a loop and if else statement,

it works fine if countrows is more that one, but as soon as count

rows is less that one, it does nothing, why,

int countrows = 0;

while (result1.next()) {

countrows++;

<![CDATA[

if (countrows >< 1) {

out.write(countrows);

}

else {

out.write(countrows);

}

}

[421 byte] By [Reniera] at [2007-10-2 5:49:54]
# 1
does that even compile ?>< is no valid syntax, use !=
pgeuensa at 2007-7-16 1:59:19 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
sory, my mistake, i do use if (countrows < 1) {
Reniera at 2007-7-16 1:59:19 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...