System.ArgumentException: 回发或回调参数无效。
若在配置中使用 < pages enableEventValidation="true"/>
提交数据或者搜索查询的时候出现错误
1,在页面的<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 中添加 EnableEventValidation="false" 就可以了。
2,通过修改web.config
<system.web>
<pages enableEventValidation="false"/>