I'm using XSL 2.0. I have the following $intTOTAL
which I'm converting to milliseconds. But the output of this is in scentific notation. How do i convert this to a normal number without scientific notation
<xsl:variable name="intTotal" select="((number($timeINTSEC)*60)*1000 + number($timeINTMSEC))"/>
<TEST><xsl:value-of select="number($intTotal)"/></TEST>
Here is the output i'm getting
<TEST>1.14E6</TEST>