Scott
Robert Lario wrote:
I written a tag as follows:
public void doTag(org.apache.commons.jelly.XMLOutput xMLOutput) {
try {
xMLOutput.write("<%");
xMLOutput.write(this.getBodyText());
xMLOutput.write("%>");
} catch(Exception ex)
{
}
}
When I use the tag I want the output to be :
<% some stuff %>
but get < some stuff gt;
Can someone please help me with this? Thanks
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
