Need to add continue in footer if page exceeding 1 and restrict it from last page.
but in xslt we are not able to assign the page value, also not able to restrict it. kindly help
<xsl:variable name="vPageNumber"><xsl:value-of
select="fo
age-number"/></xsl:variable>
<xsl:variable name="lastpage"><xsl:value-of
select="fo
age-number-citation-last"/></xsl:variable>
<xsl:choose>
<xsl:when test="$vPageNumber = $lastpage">
<fo:block font-size="10pt" font-family="Arial" color="#000000" text-align="left">last page
</fo:block>
</xsl:when>
<xsl
therwise>
<fo:block font-size="10pt" font-family="Arial" color="#000000" text-align="left">Continued
/fo:block>
</xsl
therwise>
</xsl:choose>
this is not working.
but in xslt we are not able to assign the page value, also not able to restrict it. kindly help
<xsl:variable name="vPageNumber"><xsl:value-of
select="fo
<xsl:variable name="lastpage"><xsl:value-of
select="fo
<xsl:choose>
<xsl:when test="$vPageNumber = $lastpage">
<fo:block font-size="10pt" font-family="Arial" color="#000000" text-align="left">last page
</fo:block>
</xsl:when>
<xsl
<fo:block font-size="10pt" font-family="Arial" color="#000000" text-align="left">Continued
/fo:block>
</xsl
</xsl:choose>
this is not working.