В jsp у меня есть таблица, строки которой я создаю в цикле, подобном этому,
<table>
<tr>
<th>Item</th>
<th>Quantity</th>
<th>Price</th>
<th>Total</th>
<th>Actions</th>
</tr>
<tr>
<%
String[] cartItems = (String[]) request.getSession().getAttribute("cartList");
for (int i = 0; i < cartItems.length; i++) {
%>
<td>
<input type="text" id="itemPrice" maxlength="5" size="5" style="border:none;" value="$<%= cartItem[3]%>" />
</td>
<% } %>
</tr>
</table>
Предположим, добавлено 5 таких строк, каждая строка будет иметь id = itemPrice, но я хочустрок иметь:
id=itemPrice1
id=itemPrice2.. and so on..
Как мне это сделать?Пожалуйста, помогите ..