Server Error in '/AJAXCTS' Application.
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.
3 Answers, 1 is accepted
There is a number of reasons why this could happen, so it would help us give you some ideas if you share your grid related mark-up and code-behind, along with any AJAX settings if you are using AJAX for the grid.
Greetings,
Tsvetina
the Telerik team

Below is the source code
<%
@ Page Title="" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeFile="MyCaseLoad.aspx.cs" Inherits="Pages_MyCaseLoad" EnableEventValidation="false"
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" Runat
<style type
.style1
{
width: 100%
}
.style2
{
font-size: large
font-weight: bold
}
</
style
</
asp:Content
<
asp:Content ID="Content2" ContentPlaceHolderID="MainContent" Runat
<table class
<tr
<td class="style2" style="text-align
My Case Load
</td
</tr
<tr
<td
<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True"
AllowSorting="True" ShowGroupPanel="True"
AutoGenerateColumns="False" Width="100%" ShowStatusBar="True" Skin="Black"
onitemcommand="RadGrid1_ItemCommand"
onselectedindexchanged="RadGrid1_SelectedIndexChanged" GridLines="None"
onitemdatabound
<ClientSettings AllowDragToGroup
<Selecting AllowRowSelect="True"
</ClientSettings
<
MasterTableView DataKeyNames="CrimeID" GridLines
<
CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings
<
RowIndicatorColumn FilterControlAltText
</
RowIndicatorColumn
<
ExpandCollapseColumn FilterControlAltText
</
ExpandCollapseColumn
<Columns
<telerik:GridBoundColumn DataField="PersonID"
FilterControlAltText="Filter column2 column" HeaderText="Person ID"
UniqueName="column2" Visible
</telerik:GridBoundColumn
<telerik:GridBoundColumn DataField="CrimeID"
FilterControlAltText="Filter column column" HeaderText="Case ID"
UniqueName
<HeaderStyle Width="7%"
</telerik:GridBoundColumn
<telerik:GridBoundColumn DataField="District"
FilterControlAltText="Filter column1 column" HeaderText="District"
UniqueName
<HeaderStyle Width="10%"
</telerik:GridBoundColumn
<telerik:GridBoundColumn DataField="crimetype"
FilterControlAltText="Filter column6 column" HeaderText="Crime Type"
UniqueName
<HeaderStyle Width="20%"
</telerik:GridBoundColumn
<telerik:GridBoundColumn DataField="Person"
FilterControlAltText="Filter column3 column" HeaderText="Name"
UniqueName
<HeaderStyle Width="20%"
</telerik:GridBoundColumn
<telerik:GridBoundColumn DataField="status"
FilterControlAltText="Filter column7 column" HeaderText="Status"
UniqueName
<HeaderStyle Width="30%"
</telerik:GridBoundColumn
<telerik:GridTemplateColumn UniqueName
<ItemTemplate
<asp:ImageButton ID="btnPerson" runat="server" ToolTip="Photo Available" CommandName="Persons" ImageUrl="../Images/icon_hostusers_16px.gif"
</ItemTemplate
</telerik:GridTemplateColumn
<telerik:GridTemplateColumn UniqueName ="btnEdit"
<ItemTemplate
<asp:ImageButton ID="btnUpdate" runat="server" ToolTip="Update Case" CommandName="Update" ImageUrl="../Images/action_settings.gif"
</ItemTemplate
</telerik:GridTemplateColumn
<telerik:GridTemplateColumn UniqueName ="btnUpdate"
<ItemTemplate
<asp:ImageButton ID="btnNote" runat="server" ToolTip="Available Notes"
CommandName="Notes" ImageUrl="../Images/about.gif"
</ItemTemplate
</telerik:GridTemplateColumn
</Columns
<
EditFormSettings
<
EditColumn FilterControlAltText
</
EditColumn
</
EditFormSettings
</
MasterTableView
<
PagerStyle Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout
="False" Font-Underline="False" HorizontalAlign="Right"
Wrap
="True"
<
HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default"></HeaderContextMenu
</telerik:RadGrid
</td
</tr
</
table
</
asp:Content
I could not see any obvious mistakes in your code. Do you have AJAX controls in your MasterPage and what do they update. Additionally, do any controls from the master or other content pages interact with the grid in the page that you pasted the mark-up for?
In order to help you get a better idea of what you should be looking for, here is what MSDN says about when such exception is thrown:
When the EnableEventValidation property is set to true, ASP.NET validates that a control event originated from the user interface that was rendered by that control. A control registers its events during rendering and then validates the events during postback or callback handling. For example, if a list control includes options numbered 1, 2, or 3 when the page is rendered, and if a postback request is received specifying option number 4, ASP.NET raises an exception. All event-driven controls in ASP.NET use this feature by default.
All the best,
Tsvetina
the Telerik team