xsl-list
[Top] [All Lists]

Which one's faster

2003-07-02 02:31:24
Hy there.
I would lie to know which version is faster for the transformer:

Example 1:

<xsl:template match="/">
        <xsl:for-each select="SITE" />
                <p><a href="@url"></a></p>
        </xsl_for-each>
</xsl:template>


Example 2:

<xsl:template match="/">
        <xsl:for-each select="SITE" />
                <p>
                <a>
                        <xsl:attribute name="href">
                        <xsl:value-of select="@url" />
                        </xsl:attribute>
                </a>
                </p>
        </xsl_for-each>
</xsl:template>

In resume, what's faster: creating the text directly or using the
<xsl:attribute> for generating the text?

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>