Event validation is enabled using in configuration or <%@ Page EnableEventValidation="true" %> in a page
Error :
Invalid postback or callback
argument.
Event validation is enabled using
Reason:
Multiple time binding grid might cause this error
Solution:
Add the Condition before binding
if (!Page.IsPostBack)
{
DGD_Attachments.DataSource = dr;
DGD_Attachments.DataBind();
}
0 comments