private void SpecialGrid_RowEditEnding(object sender, DataGridRowEditEndingEventArgs e)
{
SpecialProgramData data = (SpecialProgramData)e.Row.Item;
}
The data I am getting, at my row editing even,t is the data prior to editing. How do I capture the dataafter editing?
I am using code-behind in c#. I need to write a save routine.
Certified Geek