Hi All,
I have a java Hashmap and no I want to read all the key information from this map and want to add it inside my jsp combobox , bit I am not able to see anything in my combobox. And I am using following code .


<select name="Modality" align=right name="ModConcept"
onchange="ModChanged()" STYLE="width: 170px">
<c:forEach var="entry" item="${hMap}">
<option value="${entry.key}">${entry.key}</option>
</c:forEach>
</select>

Am I missing anything here, if yes please let me know. Thanks in Advance.