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)
75return _startRowIndex + _maximumRows < _totalRowCount; 449if (newStartRowIndex > _totalRowCount) { 450newStartRowIndex = _totalRowCount - DataPager.PageSize; 461int recordsOnLastPage = _totalRowCount % DataPager.PageSize; 463newStartRowIndex = _totalRowCount - DataPager.PageSize; 466newStartRowIndex = _totalRowCount - recordsOnLastPage; 583int pageIndex = (_totalRowCount / _maximumRows) - (_totalRowCount % _maximumRows == 0 ? 1 : 0);