This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: XSL transofrmation questions


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]