public static int pageCount; //总页面数 |
public static int curPageIndex=1; //当前页面 |
//下一页: |
if ( DataGrid1.CurrentPageIndex < ( DataGrid1.PageCount - 1 ) ) |
{ |
DataGrid1.CurrentPageIndex += 1; |
curPageIndex+=1; |
} |
bind(); // DataGrid1数据绑定函数 |
//上一页: |
if ( DataGrid1.CurrentPageIndex >0 ) |
{ |
DataGrid1.CurrentPageIndex += 1; |
curPageIndex-=1; |
} |
bind(); // DataGrid1数据绑定函数 |
//接页面跳转: |
int a= int .Parse ( JumpPage.Value.Trim() ); //JumpPage.Value.Trim()为跳转值 |
if ( a<DataGrid1.PageCount ) |
{ |
this .DataGrid1.CurrentPageIndex=a; |
} |
bind(); |