populating xmldata string into datagrid

maddirala

Freshman
Joined
Oct 21, 2003
Messages
30
Hi

i am doing .net application and other team in my company developed xml Webservice in Foxpro. if i send an xml string i will get results in xml string.my question is when i get results in xmlstring how do i take into dataset and bind to datagrid.

i am sending these search parameters as xmlstring to his method
<dataRequest>
<token>listphone</token>
<id>12-234</id>
<ssn>34343</>
</datarequest>

when i call his method i will get beck results in xmlstring.results looks like
<dataRequest>
<token>listphone</token>
<gdata>
<id>12-234</id>
<ssn>34343</>
<city>lr</city>
<state>mo</state>
</gdata>
</datarequest>

i want to take that string if its token "listphone" and nodetype "gdata" i need to bind results to datagrid.

i would appreciate if any help or any examples how to take that string into xmlreader and bind to datagrid.

thanks
 
Back
Top