I am getting the following error on a button click with gridview
Server Error in \'/\' Application.
Invalid postback or callback argument. Event validation
I testing all above solutions and other posts but my problem isn't done.
My problem was solved when cancel event at end of grid event at server side.
This type of problem occurred when we using edit event of gridview. just add e.Cancel = true; at the end of event.
protected void grdEducation_RowEditing(object sender, GridViewEditEventArgs e)
{
// do your processing ...
// at end
e.Cancel = true;
}