hi,
your code is good but you over look putting your variable,
your mess ( int mess = 0; ) variable is not suppose to be inside of you looping because every time that your loop turn it back on the top your variable mess would be set again into zero.
I modified you code. Try this
<%
int i;
int mess = 0;
for (i = 0; i < 1; i++){
if (mess >= 0){
mess = mess + 1;
%>
<td><input type="checkbox" name="<%=mess%>"></td>
<%}
}%>
Fernce
|