Result Node Navigation Examples

<xsl:template match="employees">
  <xsl:for-each select="employee">
    <tr><th><xsl:value-of select="name"/></th>
      <td><xsl:value-of select="salary"/></td></tr>
  </xsl:for-each>
</xsl:template>

Previous Next Yomu