Пример #1
0
 public static int CalcPageCount(int numResults, int itemsPerPage)
 {
     return(VB.fix((numResults - 1) / itemsPerPage) + 1);
 }