C# – asp.net – validation error

ajaxasp.netasp.net-ajaxc

im getting this error when i click my radio button, what is the solution for this——

invalid postback or callback argument. Event validation is enabled using 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.

Best Answer

The post back is failing validation. Some suspicous character(s) are being posted back to the server.

http://msdn.microsoft.com/en-us/library/system.web.ui.page.enableeventvalidation.aspx

Related Topic