1 write to _startRowIndex
System.Web.Extensions (1)
UI\WebControls\NextPreviousPagerField.cs (1)
528_startRowIndex = startRowIndex;
6 references to _startRowIndex
System.Web.Extensions (6)
UI\WebControls\NextPreviousPagerField.cs (6)
75return _startRowIndex + _maximumRows < _totalRowCount; 81return _startRowIndex > 0; 440int newStartRowIndex = _startRowIndex - DataPager.PageSize; 448int newStartRowIndex = _startRowIndex + DataPager.PageSize; 571int pageIndex = (_startRowIndex / _maximumRows) - 1; 577int pageIndex = (_startRowIndex + _maximumRows) / _maximumRows;