1 write to _totalRowCount
System.Web.Extensions (1)
UI\WebControls\NextPreviousPagerField.cs (1)
530
_totalRowCount
= totalRowCount;
8 references to _totalRowCount
System.Web.Extensions (8)
UI\WebControls\NextPreviousPagerField.cs (8)
75
return _startRowIndex + _maximumRows <
_totalRowCount
;
449
if (newStartRowIndex >
_totalRowCount
) {
450
newStartRowIndex =
_totalRowCount
- DataPager.PageSize;
461
int recordsOnLastPage =
_totalRowCount
% DataPager.PageSize;
463
newStartRowIndex =
_totalRowCount
- DataPager.PageSize;
466
newStartRowIndex =
_totalRowCount
- recordsOnLastPage;
583
int pageIndex = (
_totalRowCount
/ _maximumRows) - (
_totalRowCount
% _maximumRows == 0 ? 1 : 0);