David
Thanks for the help.
When I changed your code below ...
<xsl:for-each select="entry[position()=1 or
(position()>=$start)][position()<=10]">
to this
<xsl:copy-of select="entry[1]"/>
<xsl:for-each select="entry[position()>=$start][position()<=10]">
I got the desired result, but I do not understand why your original code
failed.
--
Kevin
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--