always we use xs:double but where is the namespace...?
Ho can i apply to the same...
My code is not working.
Code is written using VS-2008 IDE.
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="urn:schemas-microsoft-com:datatypes"
xmlns:xf="http://www.w3.org/2001/XMLSchema-instance">
<xsl:template match="/">
<html>
..
"[u]Here i call the Template Print</u>"
</ </xsl:template>
<xsl:template name="Print">
<xsl:value-of select="xs:double(@VALUE)"/>
</xsl:template>
What is the namespace i need to include..?
I want to display value "105E+20" value as float or by user defined format like 0.000105 or something same....