I'm declaring the xsl 2 namespace like so:
<xsl:stylesheet version="2.0" xmlns:xsl="
and trying to reference the tokenize function here:
<xsl:variable name="tokenizedSample" select="tokenize(Split,',')" />
and I keep getting this error:
msxml3.dll error '80004005'
'tokenize' is not a valid XSLT or XPath function. -->tokenize(Split,',')<--
/xml.asp, line 13
Every site I find that discusses tokenize just assumes it will work in xsl 2, but it won't work for me, can anyone tell me what's going on??
<xsl:stylesheet version="2.0" xmlns:xsl="
and trying to reference the tokenize function here:
<xsl:variable name="tokenizedSample" select="tokenize(Split,',')" />
and I keep getting this error:
msxml3.dll error '80004005'
'tokenize' is not a valid XSLT or XPath function. -->tokenize(Split,',')<--
/xml.asp, line 13
Every site I find that discusses tokenize just assumes it will work in xsl 2, but it won't work for me, can anyone tell me what's going on??