Link to home
Start Free TrialLog in
Avatar of conrad2010
conrad2010

asked on

ASP.NET Invalid postback or callback argument.

I have a control that needs to work even when it's a postback... I cannot disable EnableEventValidation and on the control I have CausesValidation="True"...

What could be the problem here?


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.
ASKER CERTIFIED SOLUTION
Avatar of Alfred A.
Alfred A.
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of conrad2010
conrad2010

ASKER

Very good post...