Post your ASP.NET 2.0 related questions here.
Loading
Post your ASP.NET 2.0 related questions here.
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.
Vijaya KadiyalaPosted Feb 26, 2009, 12:23 PM
Hi
to find an loop through checked rows or gv1
foreach (GridViewRow objGridViewRow in ListGridView.Rows)
{
if (((CheckBox)(objGridViewRow.FindControl("AddCheckBox"))).Checked = true)
{
add as a new row to a datatable.
}
}
Bind the above datatable to gv2.
Check out the below link for more information.
http://forums.asp.net/t/1174737.aspx
Thanks -- Vijaya Kadiyala
sanPosted Feb 25, 2009, 1:56 PM