Reputation: 664
I am using VB.net.
I need to fill a gridview(1) with data that cames from another gridview(2), ie:
(2) - All articles in the database.
(1) - Selected articles from (2)
What is the best way to do that?
Thanks.
Upvotes: 0
Views: 625
Reputation: 5343
Insert the selected row from gridview(2) into a datatable and assign that table as datasource of gridview(1).
Geetha.
Upvotes: 1