| Author |
Dropdownlist value
|
sumit sharmast
Greenhorn
Joined: Jul 29, 2012
Posts: 15
|
|
Dear All,
How can I send the value of quantity(droplist list) of below JSP to servlet(displayCart), please correct.
|
 |
sonu raj
Ranch Hand
Joined: Jul 31, 2012
Posts: 33
|
|
This may help. The edited part is highlighted
<jsp:include page="/header.html" />
<td width="570" valign="top" colspan="2">
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<h1></h1>
<form action="displayCart" method="get">
<table cellpadding="5" border="0">
<tr valign="bottom">
<th align="left">Description</th>
<th align="left">Price</th>
<th align="left">Quantity</th>
<th align="left"> </th>
</tr>
<c:forEach var="product" items="${products}">
<tr valign="top">
<td>
${product.description}
</a>
</td>
<td>${product.priceCurrencyFormat}</td>
<td><select name="quantity">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4 </option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8 </option>
<option value="9">9</option>
<option value="10">10</option>
</select>
</td>
<td>
<td width="179">
<img src="${product.imageURL}" width="175" height="175">
</td>
<td>
<a href="
<c:url value='/cart/displayCart?productCode=${product.code}'/>">
<input type="submit" value="Add to cart" >
</a></td>
</form>
</tr>
</c:forEach>
</table>
</td>
|
 |
 |
|
|
subject: Dropdownlist value
|
|
|