Hi There,
Here is my error:
Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation
I have a button within my RadGrid. The button is supposed to fire the event RadGrid1_ItemCommand but it doesn't even get there. Instead I get that error. I have a RadScriptManager on my masterpage so I can add another one. I've tried EnableEventValidation="true" I've tried to even add it to the web.config but I keep receiving this error.
Any help would be appreciated thanks.
edit: Incase it matters. The Button carries the RecordId as an Argument which I want to use in code. If it got there.
Here is my error:
Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation
I have a button within my RadGrid. The button is supposed to fire the event RadGrid1_ItemCommand but it doesn't even get there. Instead I get that error. I have a RadScriptManager on my masterpage so I can add another one. I've tried EnableEventValidation="true" I've tried to even add it to the web.config but I keep receiving this error.
Any help would be appreciated thanks.
edit: Incase it matters. The Button carries the RecordId as an Argument which I want to use in code. If it got there.