Hi,
I have XML which has a node and this node has multiple child nodes. For example :
<Test>
<test1>
<test2></test2>
</test1>
<test3>
<test4></test4>
<test5></test5>
</test3>
<test3>
<test4></test4>
<test5></test5>
</test3>
</Test>
I need to retrieve all the values of test4 and test5 and want to display on the page. Could you please help me how to do this?
Thanks
I have XML which has a node and this node has multiple child nodes. For example :
<Test>
<test1>
<test2></test2>
</test1>
<test3>
<test4></test4>
<test5></test5>
</test3>
<test3>
<test4></test4>
<test5></test5>
</test3>
</Test>
I need to retrieve all the values of test4 and test5 and want to display on the page. Could you please help me how to do this?
Thanks