Hi Eyup,
Thanks for replay ,
I have done all this things to persistence the selected row . My Problem is different , when ever i select the selected row from page 1 to page number such 4 or 5 i can able to access only the last page of radgrid . To access all the page or radgrid i am using this code
RadGrid1.AllowPaging =
false
;
RadGrid1.Rebind();
foreach
(GridDataItem item
in
RadGrid1.Items)
{
//Your code
}
RadGrid1.AllowPaging =
true
;
RadGrid1.PageSize = 3;
RadGrid1.Rebind();
but after the rebind i am not able to get selected row ...
is there any other way to get all the row of radgrid please provide any code snap or document ....
Thank you once again for replay...