Actually, we are getting invalid xpath expression on loading xsl file. invalid xpath expression issue getting from below xsl script
1. "<xsl:if test='z:row[index() $gt$ 5]'>"
2. "<xsl:if test="//CICOUNT[@HASARCHIVE = 'Y' or @HASUNREVIEWED = 'Y']">"
3. "<xsl:if test="//CICOUNT[@HASARCHIVE = 'Y' and @HASUNREVIEWED = 'N']">"
4. "<xsl:template match="z:row[index() $lt$ 6]">"
Above issue we are getting because we modifying the old old Microsoft WD-xsl language which was introduced in IE4 in 1998.
Thanks in advance
//in rules 2 and 3 mean that these will evaluate totrueif anyCICOUNTanywhere in the file has an attributeHASARCHIVEwith a value ofY. This//notation appears to be a common cause of confusion.//and/, but know that//would not cause an "invalid xpath expression" error.