I'm seeing some strangeness in e.NewPageIndex - occasionally, it is returning int.MaxValue.
The code I'm using is simplicity itself:
Is there any obvious reason why it would return int.MaxValue?
The code I'm using is simplicity itself:
protected void gvApprovals_PageIndexChanged(object source, Telerik.Web.UI.GridPageChangedEventArgs e) {
user.Options.ApprovalGrid.CurrentPage.Value = e.NewPageIndex;
}
Is there any obvious reason why it would return int.MaxValue?