Hi all,
I have a XML file like this format
[CODE=xml]<global>
<Item Key="Key1" value="Value1"/>
<Item Key="Key2" value="Value2"/>
<Item Key="Key3" value="Value3"/>
.
.
.
</global>[/CODE]
I will be using this like global.as in ASP.
This file is very big and I need to retrieve these values.
Is there a way to select a value directly like SQL select statement?
For example I need the value of "Key3" and I don't want to navigate all the XML is there a way for retrieving the value of "Key3" directly?
Thanks in advance
I have a XML file like this format
[CODE=xml]<global>
<Item Key="Key1" value="Value1"/>
<Item Key="Key2" value="Value2"/>
<Item Key="Key3" value="Value3"/>
.
.
.
</global>[/CODE]
I will be using this like global.as in ASP.
This file is very big and I need to retrieve these values.
Is there a way to select a value directly like SQL select statement?
For example I need the value of "Key3" and I don't want to navigate all the XML is there a way for retrieving the value of "Key3" directly?
Thanks in advance
Comment