首页 > 代码库 > System.ArgumentOutOfRangeException: 指定的参数已超出有效值的范围

System.ArgumentOutOfRangeException: 指定的参数已超出有效值的范围

GridView指定的参数已超出有效值的范围
GridView在更新过程中
异常详细信息: System.ArgumentOutOfRangeException: 指定的参数已超出有效值的范围。
参数名:value

导出gridview表格中的数据时报错。

很奇怪,整个导出按钮里的语句都没有问题,逐句跟踪也没有报错,但整个到处按钮里的语句执行完后就是有问题。

        this.rgUsers.GridLines = GridLines.Both;
        this.rgUsers.ExportSettings.ExportOnlyData = http://www.mamicode.com/true;
        this.rgUsers.ExportSettings.FileName = "Result";
        this.rgUsers.ExportSettings.IgnorePaging = true;
        this.rgUsers.MasterTableView.ExportToExcel();

后发现明明记录数应该翻页了但页面却没显示翻页。经检查,是因为前台设置了AllowCustomPaging="true"。这个属性屏蔽了自动翻页功能。。。

推测是因为,明明应该翻页但由于属性设置导致表格不能翻页,导出数据的时候没能找寻到第二页,所以溢出了。。。。。