> Hello ,
>     I have a question on how to use <C:out> tag as the value 
> to the value attribute of <html:option> tag
> 
> On my JSP
> 
> <html:select property="optionList">
>               <c:forEach items="${TaskForm.optionList}" 
> var="optionList">
>    
>    
>    <html:option value="<c:out value=${optionList.optionID}/>">

That's the problem right there, you *cannot* nest tags. So use the el
version of the tag:

<html-el:option value="${optionList.optionID}"/>


--
Tim Slattery
[EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to