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]
Other format: [Raw text]

Re: Node selection based on parent attribute



<menu id=6>
        <menu id=7/>
        <menu id=8/>
</menu>
<xsl:for-each "menu[@id=$id]/menu">
<xsl:value-of select="@id"/>
</xsl:for-each>

this would get you 7 & 8 as a result if $if would be 6.

cheers
RH
At 12:32 PM 30-08-02 +0000, you wrote:

Hi,
I would like to produce a list of child nodes from a parent that has a specific attribute value, ie with the following xml structure I want to just retrive the children of the menu node with an id of 6.
<menu id=6>
<menu id=7/>
<menu id=8/>
</menu>
<menu id=9>
<menu id=10/>
<menu id=11/>
</menu>

I have tried
<xsl:for-each "../@id=$id">
<xsl:value-of select="@id"/>
</xsl:for-each>
Using a param passed in from asp.
Am I on the right track, and would the above method be the best to retrieve a certain section of a heirachacal xml structure based on a parent attribute.
I am using asp with the msxml parser.
Thanks in advance.





_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
Salience B.V.
"The XML place to be"
Coltbaan 27b
3439 NG Nieuwegein

Ronald Heller
Technisch Consultant
www.salience.nl
ronald@salience.nl

T +31(0)30 60 56 675
F +31(0)30 60 56 324
M +31(0)6 20 41 25 77
MSN ronald_heller@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]