Jump to content

imbr

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by imbr

  1. The problem is that you have used empty Recipient tags and no closed them properly. It should be:    <Recipient no="1" custno="12345"/>    <Recipient no="2" custno="23456"/>    <Recipient no="3" custno="34567"/>

    You are so right!Unfortunately it still doesn't work.The problem is the number of values within the tag.Normally i would write <Recipient>12345<Recipient/> and i would have no problem reading the data.How can i get hold of custno when the xml-file is created this way:<Recipient no="1" custno="12345"/>Regards imbr
  2. HiHow can i read data from an xml file like this.<Recipients> <Recipient no="1"custno="12345"> <Recipient no="2"custno="23456"> <Recipient no="3"custno="34567"></recipients>My problem is, that there are two values to select and it doesn't work.How can i get custno?????<xsl:for-each select="Recipients/Recipient"><xsl:value-of select="custno"/> :) RegardsImbr

×
×
  • Create New...