My XML -
<location id="texas">
  <name>Jim</name>
        <children>tommy</children>
        <children>pam<children>
        <children>sam<children>
   </name>
</location>

I need to do two things 

1. access location.id

2. The number of children can vary so I need to get all the children, when I
use a for-each tag I am not able to access it.
        
<xsl:for-each select = "location/name/children">
                <fo:block text-align="left">
                <xsl:value-of select = "location/name/children"/>
                </fo:block> 
        </xsl:for-each>


Any help ?

regards,
raman


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to