msxsl:script

admin

Administrator
Staff member
I try to do the example I found on msdn<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"xmlns:msxsl="urn:schemas-microsoft-com:xslt"xmlns:user="Trasform"version="1.0"><msxsl:script language="JScript" implements-prefix="user">function xml(nodelist) {return nodelist.nextNode().xml;}</msxsl:script><xsl:template match="/"><xsl:value-of select="user:xml(.)"/></xsl:template></xsl:stylesheet>then I've made a xml that uses this xsl but the result is:function xml(nodelist) { return nodelist.nextNode().xml; }IE5 dosen't execute the scriptSome why can light my way ?Thanks.
 
Back
Top