how to use a jato tag to render a HTML tag

I tried using <jato:text> to render a HTML tag, like <tr class="grey">. But it will generate a string " <tr class="grey">" .How can avoid that?
[206 byte] By [705463] at [2007-11-25 8:42:34]
# 1

I think what you are trying to say is that the browser displays the HTML markup instead of processing it as markup... correct?

Based on that assumption, you just need to add the escape=false attribute to the tag:

<jato:text name="foo" escape="false"/>

craig

cvconover at 2007-7-1 15:22:02 > top of Java-index,Development Tools,Java Tools...