データベースから取得したパラメータ値に従ってテーブルを動的に生成する Jsp に次のコードがあります。各行の横に編集ボタンを配置し、送信を押してフォームをサーブレットに送信したいと考えています。ただし、 a を a 内に配置できず、助けが必要です..コードは次のとおりです。
<table border="1">
<tr>
<th>Customer Name</th>
<th>Customer Surname</th>
<th>Customer Email</th>
<th>Customer Adress</th>
<th>Customer Contact Details</th>
</tr>
<c:forEach items="${ccustomers}" var="customer" >
<tr>
<form action="myController" method="POST">
<td><input value="${customer.customerName}" name="customerNameEdit"/></td>
<td><input value="${customer.customerSurname}" name="searchForCustomerSurName"/></td>
<td><input value="${customer.email}" name="customerEmailEdit"/></td>
<td><input value="${customer.adress}" name="customerAdressEdit"/></td>
<td><input value="${customer.phoneNumber}" name="customerPhoneEdit"/></td>
<input type="button" value="edit" onclick="this.form.submit()"/>
<input type="hidden" name="<%=WebParamsList.PARAM_PAGENAME%>" value="searchPage"/>
<input type="hidden" name="<%=WebParamsList.SEARCHCRITERIA%>" value="customers"/>
<input type="hidden" name="customerIdForEdit" value="${customer.customerId}"/>
<input type="hidden" name="<%=WebParamsList.RESULTPAGEPARAM%>" value="edit"/>
</form>
</tr>
</c:forEach>
</table>