Help for this page

Select Code to Download


  1. or download this
    <xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
    </xsl:template>
    
  2. or download this
    <xsl:for-each select="MyNodes">
    <xsl:sort select="@title"/><!--optional sort-->
    <xsl:apply-templates select="."/>
    <ts><xsl:value-of select="$timestamp"></ts>
    </xsl:for-each>