[Home] [By Thread] [By Date] [Recent Entries]
"J. S. Rawat" wrote:
> <xsl:copy-of select="$temp/child::*[not(self::product)]"/>
That's a matter of taste, but you can write is as:
<xsl:copy-of select="$temp/*[not(self::product)]"/>
or in XSLT 2.0:
<xsl:copy-of select="$temp/(* except product)"/>
Regards,
--drkm
|

Cart



