views:

28

answers:

1

I'm trying to convert the response I'm getting from Web Service into a DataSet so I can bind it to a GridView.

The response is already serialized.

A: 

It need not be only a DataSet to bind to GridView. You can bind a list as well. If you're receiving a collection of records from the SOAP request, try binding it directly GridView and it will work.

this. __curious_geek