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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Insert the selected row from gridview(2) into a datatable and assign that table as datasource of gridview(1).
Geetha.