12 references to PageSize
System.Web (12)
UI\WebControls\GridView.cs (12)
1077int oldValue = PageSize; 1941arguments.StartRowIndex = checked(PageSize * PageIndex); 1942arguments.MaximumRows = PageSize; 1958int priorPagesRecordCount = checked(PageIndex * PageSize); 2400arguments.MaximumRows = PageSize; 2405arguments.StartRowIndex = checked(PageSize * PageIndex); 2684pagedDataSource.PageSize = PageSize; 2697pagedDataSource.PageSize = PageSize; 2929expectedPageCount = Math.Max(1, (expectedRowCount + PageSize - 1) / PageSize); 2944int selectedRow = AllowPaging ? (PageIndex * PageSize) + SelectedIndex : SelectedIndex; 2947int lastIndex = AllowPaging ? expectedRowCount % PageSize : expectedRowCount;