I have two different gridviews that do very similar things but from different tables.
GridMail is working exactly as I want GridChat to work. GridChat does everything fine right up to deleting a row but does not fire the rowdeleted event.
Here is GridMail on the aspx
<asp:GridView ID="GridMail" runat="server" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" DataKeyNames="ID" >
<Columns>
<asp:CommandField ShowDeleteButton="True" />
<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" ReadOnly="True" SortExpression="ID" />
<asp:ImageField DataImageUrlField="ProfilePicPath" ControlStyle-Width="50" >
<ControlStyle Width="50px" />
...
Go to the complete details ...