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.
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.
Copyright © 2021 Jogjafile Inc.
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.