Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Question about <html:text> tag

Status
Not open for further replies.

pajarokillo

Programmer
May 3, 2004
30
ES
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?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top