Nylon Technology Presentation: Introduction To XSLT And XmlTransform() In ColdFusion

<!--- Match toes element. --->
<xsl:template match="toes">
 
	<!--- Loop over toes. --->
	<xsl:for-each select="toe">
		<xsl:value-of select="name" />
	</xsl:for-each>
 
</xsl:template>

For Cut-and-Paste