Hi,
I want to Delete Row From One Gridview using rowCommand And Add it to another Gridview
Adding the row to 2nd gridview should be dynamic!!
Please help Me out.
Thnanks
Channabasava
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Posted Jul 30, 2014, 6:22 AM
Hi,
this may help you
protected void Delete(object sender, EventArgs e)
DataRow DR=dt.Rows[index];
DataTable dt2=(DataTable)grid2.DataSource;
dt2.Rows.Add(DR);
Please mark as answer, if it helps you
Thanks,
Kailash