Hi Rick,
> I am using <xsl:number/> to output the number of the current element. I
> would like to add another number (99) to the value of <xsl:number/>.
Store the result of <xsl:number/> in a variable and add 99 to the
variable value.
<xsl:variable name="number"><xsl:number /></xsl:variable>
<xsl:value-of select="$number + 99" />
Cheers,
Oliver
/-------------------------------------------------------------------\
| ob|do Dipl.Inf. Oliver Becker |
| --+-- E-Mail: obecker@xxxxxxxxxxxxxxxxxxxxxxx |
| op|qo WWW: http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|