xsl-list
[Top] [All Lists]

Re: Newbie: easy one.

2003-07-08 07:18:07



  <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



<Prev in Thread] Current Thread [Next in Thread>