Am surprised why drop down box is not loading in my jsp, what am i missing?
Please reply. Your reply will be appreciated.
<logic:iterate id="Data" name="symptomdata" type="java.util.Map.Entry" indexId="countid">
<html:option value="<bean:write name="Data" property="value">"><bean:write name="Data" property="value"/></html:option></logic:iterate>
Above code gives me this error, equal symbol expected' . I dont know what am I missing. Its giving error for<html:option value="<bean:write name="Data" property="value">">.
While <bean:write name="Data" property="value"/> is working perfectly fine and displaying data in drop box, it is just not assigning value to the entry in combobox because of error.

