Filipe Costa
Filipe Costa

Reputation: 664

insert row into gridview from another gridview

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

Answers (1)

Geeth
Geeth

Reputation: 5343

Insert the selected row from gridview(2) into a datatable and assign that table as datasource of gridview(1).

Geetha.

Upvotes: 1

Related Questions