I am using GridView control in asp.net 2005 c# using .
GridView
How can I delete a particular row from GridView.
I have written the followin
You're deleting the row from the gridview and then rebinding it to the datasource (which still contains the row). Either delete the row from the datasource, or don't rebind the gridview afterwards.