HI all,
Within a
jsp page I am currently using a bean, a custom tag and jstl.
My bean is being accessed by jstl and a
String property of the bean is being passed to my custom tag. However, the value that is actually being passed to the custom tag is
<c

ut value=�${bean.name}� /> and not the value of bean.name.
I thought by the time the custom tag was executed the <c

ut value=�${bean.name}� /> would have printed out the value of bean.name.
Can someone please let me know how to get the value of bean.name to the custom tag as a property.
Thank you
david