在jsp页面用<logic:iterate>循环出多条记录:
<td>
<bean:write name="templist" property="shengfen"/>
</td>
<td>
<bean:write name="templist" property="shifoudiaochu"/>
</td>
<td>
<bean:write name="templist" property="taishu"/>
</td>
<td>
<html:text size="20" property="cifatianshu" value="${templist.cifatianshu}" />
</td>
</logic:iterate>
当我修改最后一个字段的值然后提交,想在action中得到我修改的值,但是得到的是null.请问有什么办法在后台得到我提交的值?(TEXT框是动态的不是写死的)