pajarokillo
Programmer
Well, i have the next code in my JSP page
<logic:messagesPresent message="true">
<html:messages id="message" message="true" property="nombre">
<c:set var="myVar"><bean:write name="message" /></c:set>
</html:messages>
</logic:messagesPresent>
and i would like to set the text value with the myVar var than i define with <c:set> tag
<html:text name="message" value="*" title="${myVar}" property="nom" />
In this way, the value that my <html:text /> display is "${myVar}" instead of the value of myVar var
how can i do it?
<logic:messagesPresent message="true">
<html:messages id="message" message="true" property="nombre">
<c:set var="myVar"><bean:write name="message" /></c:set>
</html:messages>
</logic:messagesPresent>
and i would like to set the text value with the myVar var than i define with <c:set> tag
<html:text name="message" value="*" title="${myVar}" property="nom" />
In this way, the value that my <html:text /> display is "${myVar}" instead of the value of myVar var
how can i do it?