> Hi...I am facing some problems with using JSTL tags inside 
> struts tags.
> 
> This is the piece of code I wrote for my application:
> 
>  <html:text 
>  name="Customer" 
>  property ="Name" 
>  maxlength="256" 
>  size="256"
>  style="<c:out value="${styleVar}"/>"
>  />

You can't nest tags, so this syntax just is not going to work. But, you can
get the same place by using the "el" tags":

 <html-el:text 
 name="Customer" 
 property ="Name" 
 maxlength="256" 
 size="256"
 style="${styleVar}"/>"
 />


--
Tim Slattery
[EMAIL PROTECTED]


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

Reply via email to