From: bthumber on
I have a gridview were I am using a colunm of checkboxes, if checked I can
delete that row. My checkbox code:

<asp:ImageButton Id="DeleteMsg" runat="server" ImageUrl="/image/Delete.gif"
onclick="DeleteMsg_Click" />

and the event:
protected void DeleteMsg_Click(object sender, ImageClickEventArgs e)
{

}
But I keep getting and error: cs1061 "Does not contain a definition for
DeletAll... What is wrong with my code?

I have asked this same question in the asp.net Forum but help as of yet.
How do I fix this?