Hi,
Sorry for the mouthful in the title. Please see example below:
<xml>
<object id="1" val="value" />
<object id="2" val="value2" />
<object1>
<id1>value</id1>
<id2>value2</id2>
</object1>
</xml>
Referring to the first two nodes, in bold; If I'm trying to get the value of the attribute "val" based on the value of the attribute "id", what would be the syntax here. The typical syntax is <%= targetData.xml.object1.id1 %> for example.
Much appreciate it!
Jim