<logic:iterate id="b" name="blank" indexId="idx">
<tr>
<td colspan='2' width='100%'> ${idx+1 }.&amp;nbsp;${b.title }。&amp;nbsp;
<font color='red'>(${b.score }分)</font>
</td>
</tr>
<tr>
<td width='10px' nowrap>
<td width='100%'>
<input type='text' id='Answer' name='Answer' 
onfocus='try{Controller_onfocus(this)}catch(e){}'>
</td>
</tr>
<tr>
<td colspan='2' height='10px'></td>
</tr>
</logic:iterate>这是我做的一个在线考试系统中的显示试题的页面,用的是<logic:iterate>。题目都是从数据库中获得的,但我要用ActionForm获得页面上填的答案,就是<input>中Answer的值,应该怎样获得啊?是在ActionForm中定义成数组吗?
请高手指点。最好能给出示范代码?