I have a grid setup to page, but sometimes when I click Next or Prev or even select a page by number I will get the following 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.
Now I know this error is typically associated with trying to pass values from client to server that were not registered as acceptable input values, but I am not using any other controls on my page; the grid is the only control.
Any suggestions or solutions to my problem?
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.
Now I know this error is typically associated with trying to pass values from client to server that were not registered as acceptable input values, but I am not using any other controls on my page; the grid is the only control.
Any suggestions or solutions to my problem?
