|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: xsl:if/xsl:when test
Hi Maulik,
...
> WHAT I have working:
> In the following XML, I have two <Node_path> and <Node_value> pairs in the
> first child, and if both text are valid, it processes each <URL> under it,
> meaning six times!
...
> Snippet XSL code:
...
> <xsl:for-each select="$tempdoc//NODE">
do the test
...
if test is ok:
> <xsl:for-each select="$tempdoc//URL">
> <url><xsl:value-of select="." /></url>
> </xsl:for-each>
> </xsl:if>
>
> </xsl:for-each>
You've got two nodes and three URLs. You call the inner xsl:for-each two
times and get three URLs => you get six results.
You probably want something like:
for-each NODE
do the test
if all tests are ok
for-each url
do what you like
Gruß, Philip
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








