Subject: Re: xsl transform issue
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 24 Feb 2005 10:56:53 GMT
|
> anyway why would the value of select . output this to
> me?
output what?
inside
<xsl:for-each select="win-registry-data/data">
the current node is the data node, and (I think) you want the value of
that node. "." stands for the current node.
> Why does it give me this piece?
> NullSessionPipestrueREG_MULTI_SZ
It doesn't,
I wrote:
...
<xsl:for-each select="win-registry-data/data">
<td>
...
</td>
so it generates a sequence of <td> elements.
so it won't generate a string with no markup.
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
________________________________________________________________________
|