This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Reg Counters


Hi,

I need some help on counters.

The following is the sample XML file

<Message>
<ListOfContact>
<Contact>
<Name>AAA</Name>
<Phone>123</Phone>
</Contact>
<Contact>
<Name>BBB</Name>
<Phone>321</Phone>
</Contact>
<Contact>
<Name>CCC</Name>
<Phone>432</Phone>
</Contact>
</ListOfContact>
</Message>

Should get turned into a XML like

<NewMessage>
<ListOfContact>
<Contact>
<Name index="1">AAA</Name>
<Phone>123</Phone>
<Name index="2">BBB</Name>
<Phone>321</Phone>
<Name index="3">CCC</Name>
<Phone>432</Phone>
</Contact>
</ListOfContact>
</NewMessage>

So for each contact I should be able to display index=1, 2, 3 etc., I tried 
Position but I get always only one.

Thanks for your help.

Regards
Lawrence.





_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]