Subject: Re: XSL transofrmation questions
From: Bill <bill@xxxxxxxxxxxx>
Date: Sun, 26 Mar 2000 17:58:42 -0700
|
Carlos Araya said:
> <td><xsl:value-of select="TITLE"></td>
> <td><xsl:for-each select="AUTHOR">
> <xsl:value-of select=".">
You have two syntax errors in the above: You didn't close the xsl:value-of
elements. What you should have is:
<td><xsl:value-of select="TITLE"/></td>
<td><xsl:for-each select="AUTHOR">
<xsl:value-of select="."/>
--Bill Schindler
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|