Hello all,
I am trying to fill up an option value in a JSP file using the bean:write
tag.
Below is the code. I have the values present for the property and do not get
any errors, but string written to the option is empty ("").
Could anyone tell me if something else has to be done.
Thanks in advance,
Michael.

------------------------------------------------
<html:select property="selectedValue" value="">
<html:option value=""></html:option>
<logic:iterate id="item" name="list">
<html:option value="<bean:write name='item' property='accountNo'/> ">
</html:option>
</logic:iterate>
</html:select>
------------------------------------------------

Reply via email to