いいえを提供したときに本の属性を受け入れる動的テーブルを作成したいと思います。前のページに入力する本の数。しかし、私は何も得ていません。
これは私のコードです:
<table>
<c:forEach begin="1" end= "${ no }" step="1" varStatus="loopCounter">
<tr>
<td>
<input type='text' name="isbn" placeholder="ISBN">
</td>
<td>
<input type="text" name="Title" placeholder="Title">
</td>
<td>
<input type="text" name="Authors" placeholder="Author">
</td>
<td>
<input type="text" name="Version" placeholder="Version">
</td>
</tr>
</c:forEach>
</table>
${no} は入力したい本の数です。私はここでは新人です。タイトルがわかりにくかったらすいません。助けてください。