I'm trying to loop through a range in a node set, but I can't get it to work. This is what I have so far, I'm not sure what else to try... Thanks
Code:
<xsl:variable name="Items" select="//Item" />
// Start at 4 and stop at 6 (These are ten items in the set)
<xsl:for-each select="$Items[position()>3 and $Items[position()<=6]">