Hi,
What I am doing is to transform this WinApp code to display it on ASP.NET page.
private void Row_Deleted(object sender, DataRowChangeEventArgs e){
//System.Diagnostics.Debug.WriteLine("Row_Deleted Event: name={0}; action={1}", e.Row["name", DataRowVersion.Original], e.Action);
Console.WriteLine("Row_Deleted Event: name={0}; action={1}", e.Row["name", DataRowVersion.Original], e.Action);
}
I have found s ...
Go to the complete details ...