Sure, my XSLT code is as follows (slightly modified for readability):
<xsl:for-each select="/pub:root/pub:Chil
<xsl:if test="position() mod 3=1">
<xsl:text disable-output-escaping="y
</xsl:if>
<td width="180" height="255" class="right">
<!-- Table Cell Contents -->
</td>
<xsl:if test="position() mod 3=0">
<xsl:text disable-output-escaping="y
</xsl:if>
</xsl:for-each>
The XML data is in a tree. So I'm basically pulling a bunch of information from each of the child elements on that tree.
Thanks for you help.
- Dan
Main Topics
Browse All Topics





by: SnowFlakePosted on 2006-06-03 at 08:57:48ID: 16823687
can you show some of your XML & XSLT?
basicly I guess you can use the count() function somehow.
SnowFlake