Here's peace of my xml: Code:
[code]
[/code]
and peace of xsl: Code:
[code]
[/code]
I would like to make my xsl do this: 1)In outer for-each cycle xsl reads value of MenuId attribute of of . 2) then in inner cycle for-each my xsl compares that value to every value of MenuAttribute of 's of 3) then my xsl reads the value of MenuId attribute of following of and repeats second step
In normal programming language what i am trying to do would look like this: foreach (xitems as xitem) foreach (yitems as yitem) if xitem == yitem do smth
Could anyone give any advice or modify my code in order to solve my issue? I would be grateful