> Hi All,
>
[quoted text clipped - 29 lines]
>
> so is there any loop required ,kindly tell me as how to get it?
VB.NET pseudo code
Dim doc As New XmlDocument()
doc.Load("file.xml")
Dim name As String = "ER_Kista"
Dim conversion As XmlNode =
doc.SelectSingleNode(String.Format("/SXPDictionaryItemsGetResult/DictionaryItems/TimeZoneConverter[Name
= '{0}']/Conversion", name))
If Not conversion Is Nothing Then
Console.WriteLine(conversion.InnerText)
Else
Console.WriteLine("Element not found")
End If

Signature
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
deepak - 07 Feb 2008 18:48 GMT
wow martin you are great....its working...:-) thanks a lot
may i add u in my msn or yahoo
my id is kr_deepak123@yahoo.co.in
and hotmail is kr_deepak123@hotmail.com
kindly add me, i want to be with those perosns which are experts in coding
.net like you...u helped me very much .. i can not forget this help...u dont
know how much u helped thanks again
> > Hi All,
> >
[quoted text clipped - 42 lines]
> Console.WriteLine("Element not found")
> End If