Hi,
I'm using the example of decorator in http://displaytag.sourceforge.net/tut_links.html to build a complex url
I'm writing something like:
....
return "<a href="" + lObject.getId() + "\">" + lObject.getValue() + "</a>";
when I execute the page, write something odd:
>ddd</a>
(where ddd is my value)
But if I put in my decorator class a name of page smaller I haven't problem.
....
return "<a href="" + lObject.getId() + "\">" + lObject.getValue() + "</a>";
What is it happening? How can I do this?
Thank you.

