[
Lists Home |
Date Index |
Thread Index
]
- From: gauti@mindless.com
- To: xml-dev@xml.org
- Date: Fri, 30 Jun 2000 10:09:16 -0400 (EDT)
Hi!
Can't figure out why the following xml and xsl give the output below.
XML:
<itemlist>
<item>
<name>AAA</name>
</item>
<item>
<name>BBB</name>
</item>
</itemlist>
XSL:
<xsl:template match="item">
<xsl:value-of select="position()"/>
<xsl:value-of select="name"/>
<p/>
</xsl:template>
OUT:
2AAA
4BBB
Point of confusion: the position seems to start with 2 and going with an increment of 2. Is this supposed to be like this or is there a bug somewhere in my XSLT?
Can anyone help?
Thanks alot,
Gauti
----------------------------------------------------------------
Get your free email from AltaVista at http://altavista.iname.com
***************************************************************************
This is xml-dev, the mailing list for XML developers.
To unsubscribe, mailto:majordomo@xml.org&BODY=unsubscribe%20xml-dev
List archives are available at http://xml.org/archives/xml-dev/
***************************************************************************
|