Saturday, March 8, 2014

I've looked into how to merge two different DataSet objects before binding to a GridView control in an ASP.NET application.

dataSetOne.Merge(dataSetTwo);

...might be one way but:

 
 

dataSetOne.Tables[0].Merge(dataSetTwo.Tables[0]);

...really might be better.

No comments:

Post a Comment