我有DataGrid
和DataPager
。我没有将Source
的{{1}}绑定到Pager
中的object
,而是调用memory
存储过程,该过程根据以下内容检索记录将Paged
和Requested Page
传递给DataPager的Current PageIndex
事件中的SP PageSize
。
PageIndexChanged
现在,我想为void OnPageIndexChanged(object sender, EventArgs e)
{
rowIndex = (pgrProductGrids.PageIndex * pgrProductGrids.PageSize) + 1;
}
设置NumericButtonCount
,Pager
将根据Count
Total Records
设置过程将返回。我需要如何以及在何处设置此项?
我尝试像这样设置检查:
pgrProductGrids.NumericButtonCount = 2;
但它仅指示一个页面并将所有数据加载到其中