Subject: Re: How can I get XSLT to write <cfreturn this>
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 18 Aug 2003 23:01:30 +0100
|
I'm trying to develop a transformation that will
output, among other things, this text (literal)...
<cfreturn this>
XSLT is mainly designed to produce XML and that is not XML.
You coul duse
<xsl:output method="text"/>
to outpiut in text mode then you could use
<cfreturn this>
in the stylesheet which will produce the required string.
David
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|