Basically I have a gridview that is loaded when a DataSet is returned from the web service, but going at it this way makes me lose some of the benefits of the gridview like the simplicity in sorting, updating, deleting, rows, etc.
Is there a way I can use a web service, but still have access to using a SqlDataSource binded to the GridView. I can't return a webcontrol like SqlDataSource, but maybe there is a way around?
SqlDataSourceimplies local access to the data (a SQL data store), which you don't have from a web service.