Code:
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 receive the above error when I try to proceed to the next page AFTER making an Ajax request on this page.
Specs:
-- VS 2005 C#
-- ASP.NET 2.0
-- Wizard Server Control
Here's what I'm doing:
- In a Text Box, I add an onblur event that makes the Ajax call
- The calls populates a DropDownList control
This all works fine, the problem occurs when I try to proceed to the next page in the flow.
I've tried this both using the zxml.
js library and the ICallbackEventHandler and they both work, in populating the DDL, but I still get the above error when trying to move to the next page.
Any suggestions would be greatly appreciated.
Thanks,
King
King Wilder
[email protected]