<select name="item">
<c:forEach items="${combo}" var="id">
<option value="${id}">${id}</option>
</c:forEach>
</select>
How can we get the selected value from the above dropdown list?
How can we get the selected value from the above dropdown list? |
||||
|
|
|
Direct
The only reason your code might fail is when there is no item selected, then the |
|||||||||
|