JSF has a 6 phases lifecycle, JSP only has one phase. Your scriptlet
will be evaluated only during the JSP execution. Be aware that JSF tags
do evaluate their body only when creating the view. After that, JSF tags
are not used anymore, the root JSF tag just handle the 'render' of child
component, independent of the JSP content. That's why mixing JSF and
JSTL or scriptlets is a bad thing.
En l'instant précis du 10/04/07 13:25, shree s'exprimait en ces termes:
> yes .it allows like <f:param name="a" value="#{bean.value}"/>or value="abc".
> but i want to pass the value like <f:param name="a" value="<%=value%>"/> in
> scriplet tags.
>
> En l'instant précis du 10/04/07 12:35, shree s'exprimait en ces termes:
>
>> thanks for the reply David.
>> i have already tried using <f:param value="<%=value%>">
>> but f:param tag is not allowing expressions.
>>
>>
> f:param value is allowing EL expressions.
>
>