18 references to PageSize
System.Web.Extensions (18)
UI\WebControls\DataPager.cs (1)
539OnTotalRowCountAvailable(null, new PageEventArgs(0, PageSize, 101));
UI\WebControls\ListView.cs (1)
3150_maximumRows = pager.PageSize;
UI\WebControls\NextPreviousPagerField.cs (9)
440int newStartRowIndex = _startRowIndex - DataPager.PageSize; 445DataPager.SetPageProperties(newStartRowIndex, DataPager.PageSize, true); 448int newStartRowIndex = _startRowIndex + DataPager.PageSize; 450newStartRowIndex = _totalRowCount - DataPager.PageSize; 453DataPager.SetPageProperties(newStartRowIndex, DataPager.PageSize, true); 456DataPager.SetPageProperties(0, DataPager.PageSize, true); 461int recordsOnLastPage = _totalRowCount % DataPager.PageSize; 463newStartRowIndex = _totalRowCount - DataPager.PageSize; 468DataPager.SetPageProperties(newStartRowIndex, DataPager.PageSize, true);
UI\WebControls\NumericPagerField.cs (7)
291int currentPageIndex = _startRowIndex / DataPager.PageSize; 292int firstButtonIndex = (_startRowIndex / (ButtonCount * DataPager.PageSize)) * ButtonCount; 294int lastRecordIndex = ((lastButtonIndex + 1) * DataPager.PageSize) - 1; 297newStartRowIndex = (firstButtonIndex - 1) * DataPager.PageSize; 305newStartRowIndex = _totalRowCount - DataPager.PageSize; 310newStartRowIndex = pageIndex * DataPager.PageSize; 314DataPager.SetPageProperties(newStartRowIndex, DataPager.PageSize, true);