topical media & game development
basic-xml-07-Employees.xsl / xsl
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:template match="/">
<html>
<head>
<title>This demonstrates the following axis.</title>
</head>
<body>
<h3>Following axis demo.</h3>
<xsl:apply-templates select="/Employees/Person[1]/FirstName" />
</body>
</html>
</xsl:template>
<xsl:template match="FirstName">
<xsl:for-each select="following::*">
<p><xsl:value-of select="name(.)" /> which contains the text "<xsl:value-of select='.' />".</p>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.