|
|
|
How to Loop through GridView Rows? GridViewRow |
|
Posted by
Moderator1
on
6/17/2008 8:49:40 PM |
420
Views |
|
|
|
|
|
|
|
Use GridViewRow class to loop through or navigate the GridView rows from outsite the GridView control's event.
For example, you need to navigate all the rows in a gridview control and find a child control placed inside it. The sample code below helps you to find a Checkbox placed inside a GridView control.
foreach (GridViewRow gvrow in GridView1.Rows)
{
CheckBox CheckBox1 = (CheckBox)gvrow.FindControl("CheckBox1");
if (CheckBox1.Checked)
{
//Do your operations here.
}
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|