Re: [xsl] Newbie: easy one.

Subject: Re: [xsl] Newbie: easy one.
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 8 Jul 2003 15:18:07 +0100


  <xsl:template match="w:address">
   <tr>
    <td>URL:</td>
    <td><xsl:value-of select="address"/></td>
   </tr>
  </xsl:template>

forgot to fix your last FAQ issue

the current node there is address which doesn't have address children so
that should be


<xsl:template match="w:address">
 <tr>
  <td>URL:</td>
  <td><xsl:value-of select="."/></td>
 </tr>
</xsl:template>


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread