Completely solved! Invalid CurrentPageIndex value. It must be greater than or equal to 0 and less than the pagecount! problem

Source: Internet
Author: User
Tags stack trace
Resolve | Problems in multiple pages of the DataGrid, the last record in the end of the page is deleted, often appearing:

Invalid CurrentPageIndex value. It must be greater than or equal to 0 and less than PageCount.
Note: An unhandled exception occurred during the execution of the current WEB request. Check the stack trace for more information about the error and where the error occurred in the code.

Exception Details: System.Web.HttpException: Invalid CurrentPageIndex value. It must be greater than or equal to 0 and less than PageCount.

Now just add the following code to the DeleteCommand event in the DataGrid to completely resolve the change.
Note: [Protected System.Web.UI.WebControls.DataGrid DG];

if (DG. CURRENTPAGEINDEX==DG. PageCount-1) &&dg. Items.count==1)
{
if (DG. CURRENTPAGEINDEX-1>1)
{
Dg. CurrentPageIndex = DG. CurrentPageIndex-1;
}
Else
{
Dg. CurrentPageIndex = 0;
}

}
This.open_sql ();
Dg. DataBind ();

I am a rookie, the purpose is to learn from everyone, thank you!!!
I really hope to become friends with you, please add me qq--126083810


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.