[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Generating a CSV file using XSLT


Subject: Re: [xsl] Generating a CSV file using XSLT
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 11 Feb 2005 15:20:04 GMT

  <xsl:template match="SchemeName">
  <xsl:text>LA Code
  </xsl:text>
  <xsl:value-of select="SchemeName" />

The current node is an element called SchemeName so that value-of is
selecting the child elements of SchemeName that are called SchemeName
this is probably empty, and you probably meant
<xsl:value-of select="." />

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


Current Thread