This question is locked. New answers and comments are not allowed.
hi to all
i want to run loop on gridview's rows
my code is
here a one thing is notice by me "GridRowsList" count is changed depends on gridview's height
Gridview's Item source has 40 items
but in above code return me a different different values like (21,25,30)
Thur loop i want to get some of the values from text-box, Combo box, Check box and list box. which is included in every gridview's row
i want to run loop on gridview's rows
my code is
IList<GridViewRow> GridRowsList = Radgvcustom.ChildrenOfType<GridViewRow>();
foreach
(GridViewRow gvr
in
GridRowsList)
{
**************
**
**
**
**************
}
here a one thing is notice by me "GridRowsList" count is changed depends on gridview's height
Gridview's Item source has 40 items
but in above code return me a different different values like (21,25,30)
Thur loop i want to get some of the values from text-box, Combo box, Check box and list box. which is included in every gridview's row