i tried with this code to clear all the cells Data.. But it's not working Properly....
foreach (Control ctrl in clrctrls)
{
if (ctrl.GetType() == typeof(GridDataBoundGrid))
{
GridDataBoundGrid Gdbg = ctrl as GridDataBoundGrid;
Gdbg.Model.Clear(true);
Gdbg.Refresh();
}
}
thanks in Advance.....