Re: Variable in a Struts tag

2003-03-26 Thread Nicolas De Loof
It seems you use struts standard html taglib. use html-el taglib (in the contrib directory of struts RC1 distrib). standard taglib is "only" JSP1.1 compliant and doesn't compute JSP1.2 Expression Language. Nico. > I have the JSTL/Struts code: > > > > > > Cus

RE: Variable in a Struts tag

2003-03-26 Thread Andrew Hill
: Struts Users Mailing List Subject: Variable in a Struts tag I have the JSTL/Struts code: Customer Name: ... But when i write: Customer Name: the Struts taglib don't reads "${custName}" as a variable but as a string so create a t

Variable in a Struts tag

2003-03-26 Thread Giovanni Formenti
I have the JSTL/Struts code: Customer Name: ... But when i write: Customer Name: the Struts taglib don't reads "${custName}" as a variable but as a string so create a textbox with the string "${custName}" inside! How can i do?! Thanx Gio --