I get the paging to show when the RadGrid is shown, but when I try to click for the next page the RadGrid disappears.
Here are the following screenshots that might help with this problem



Please help with some guidance to help me resolve this issue.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You don’t need the
PageIndexChangedevent, since you’re not doing any funky stuff there.As Ali Issa said, you should use the
OnNeedDataSourceevent, which is gonna be called when you fetch for next page.So follow these steps:
Remove the following code:
in your aspx file:
OnPageIndexChanged="RadGrid1_PageIndexChanged"And add the following code:
in your aspx file:
OnNeedDataSource="RadGrid1_NeedDataSource"One last thing: Don’t forget your
tblvariable must be re-assigned on every server call (unlesstblis aSessionvariable). So, make sure tbl is at least defined in yourPage_Loadbut the best would be to replacetblto some Database call.