[Home] [By Thread] [By Date] [Recent Entries]
This is the result I need to achieve: Ummm, so <xsl:template match="rootElement"> <container> <xsl:apply-templates /> </container> </xsl:template> ? Typically I'd try to explain what's happening instead of just responding to code, but I'm not entirely sure what you did to get your mistaken output. Probably something like: <xsl:template match="rootElement/*"> <container> <xsl:apply-templates /> </container> </xsl:template> If you did, then you need some review on the basics of XPath. Otherwise you might be abusing for-each. But this really is a simple problem. Jon Gorman.
|

Cart



