numbering footnotes

Subject: numbering footnotes
From: "Anita Fend" <Anita_Fend@xxxxxxxxxxx>
Date: Wed, 14 Jun 2000 14:02:36 +0200
Hello xslt-programmers,
I want to numering footnotes like it's described in the code below. 
With cocoon it works very well, but with IE5.5 and MSXML from 9.5.2000 it doesn's do the same.
It tells me always that the data who is needed to process this is currently not available. 
I have find out, that 
<xsl:number level="multiple" count="fussnote"/> 
do not produce that error.
So my question:
DOES THE MSIE AND HIS PARSER DO NOT SUPPORT THE LEVEL-ATTRIBUTE ANY?
IS THERE AN OTHER POSSIBILITY TO NUMBER THE FOOTNOTES DESCENDANT?
Greetings from Anita

	<!--fussnoten ausgeben-->
	<xsl:for-each select="*//fussnote">
		<p class="fussnote">
		<xsl:element name="a">
	 		<xsl:attribute name="name">fn<xsl:number level="any" count="fussnote"/></xsl:attribute>
			<xsl:element name="a">
		 		<xsl:attribute name="href">#back_fn<xsl:number level="any" count="fussnote"/></xsl:attribute>
				<xsl:text disable-output-escaping = "yes">[</xsl:text>
		  		<xsl:number level="any" count="fussnote"/>
				<xsl:text disable-output-escaping = "yes">]</xsl:text>
			</xsl:element>
		</xsl:element>

		<xsl:for-each select="textblock">						
			<xsl:value-of select="current()"/>
			<xsl:element name="br"/>
		</xsl:for-each>
		</p>
	</xsl:for-each>




 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread