append string using <c> tag
843830Dec 11 2006 — edited Dec 11 2006Hi,
I've a code like this
<td>
<c:set var="author" value="${blogEntry.authorDetails}"/> <c:out value="${author.firstName}"/>
<c:out value="${author.lastName}"/>
</td>
the problem is both first name and last name are strings,word wrapping is not done perfectly.
For instance if it is,
"James Gosling"
then it may come like ,
James Gosli
ng
so is it possible to append both the string using jstl?
Thanks,
mms.