Re: Help on apply-templates
The error says it all. You need to close your apply-templates tag.
Just add a '/>' at the end instead of just the '>'
Re: Help on apply-templates
I'm not sure where you want me to put the closing tag!
Re: Help on apply-templates
You have this.
<xsl:apply-templates select="ProductData/Product">
It needs to be this
<xsl:apply-templates select="ProductData/Product"/>
Or equivalently:
<xsl:apply-templates select="ProductData/Product">
</xsl:apply-templates>
Every <blah> tag has to be closed either inline with <blah /> or separately with <blah></blah>