Hi,
I need some help. I have a web service from which I request information and it is returned in the following format.
What I need to do is assign each of these values to a textbox. How can I access each one of these values using and assign them to a textbox.
Thanks in advance
SonJ
I need some help. I have a web service from which I request information and it is returned in the following format.
Code:
<SearchResult NumberOfHits="1" xmlns="PeopleSearchers">
<Entry>
<FirstName>FirstName</FirstName>
<LastName>LastName</LastName>
<Department>Department</Department>
<Email>Email</Email>
</Entry>
</SearchResult>
What I need to do is assign each of these values to a textbox. How can I access each one of these values using and assign them to a textbox.
Thanks in advance
SonJ