Hello,
It might be simple but I couldn't figure it out ..
I have a
jsp in which I have the following code
<html:select property="svenv">
<html
ption value="0">(any)</html
ption>
<c:forEach var='se' items='${sessionScope.UserInfo.svenv}'>
<html
ption value="<c
ut value='${se}'/>"><c
ut value='${se}'/></html
ption>
</c:forEach>
</html:select>
if I invoke the jsp and see the source code
select name="svenv"><option value="0">(any)</option>
<option value="<c
ut value='${se}'/>">Save</option>
<option value="<c
ut value='${se}'/>">Print</option></select>
Is there anything wrong in giving
<html
ption value="<c
ut value='${se}'/>"> ?
My problem is value attribute does not have Save or Print . I don't know what I am missing ..please shed some light