Hello I am trying to pass the value of i to a javascript but I can't seem to get it to pass the value.
<% for (int i = 0;i < 5; i++) { %>
<tr>
<td align=left>
<html:link href="javascript:submitForm('<%=
i%>')">value</html:link>
</td>
</tr>
<%}%>
What am I doing wrong?
Thank you

