Winder Level: Protégé
 Registered: 20-04-2006 Posts: 7
|
Receiving from XML
i receive somethign like <home><status>31</status></home>
how do i get the value of status ?
Try
reader = New XmlTextReader(New StringReader(returndata))
reader.MoveToContent()
reader.Read()
Catch ex As Exception
End Try
Try
doc = New XmlDocument
doc.LoadXml(returndata)
MsgBox(returndata)
Catch ex As Exception
MsgBox("Error sending XML")
End Try
I have done this code, and use the msgbox to display the returndata.
Thank you
[Edited by Winder on 25-04-2006 at 12:06 PM GMT]
|