whats the difference between using:
and
?
Whats the point in the <xsl:for-each> tag? It seems like its not needed.
Code:
<xsl:template match="/">
<xsl:apply-templates select="//Test" />
</xsl:template>
<xsl:template match="Test">
<p><xsl:value-of select="." /></p>
</xsl:template>
and
Code:
<xsl:template match="/">
<xsl:for-each select="//Test">
<p><xsl:value-of select="." /></p>
</xsl:for-each>
</xsl:template>
?
Whats the point in the <xsl:for-each> tag? It seems like its not needed.