hey all,
i have a gridview of records and i'm trying to display the total pages with
10 records per page.
int totalpages;
totalpages = 1148 / 10;
totalpages = 114;
there's actually 115 total pages. how can i make sure i don't miss that last
page?
thanks,
rodchar
nahid - 30 Jun 2007 10:23 GMT
> hey all,
> i have a gridview of records and i'm trying to display the total pages with
[quoted text clipped - 9 lines]
> thanks,
> rodchar
why not just put pagesize=10 gridview will automatically handle it
nahid
KAZ Software
http://www.kaz.com.bd
blog http://nahidulkibria.blogspot.com
Alexey Smirnov - 30 Jun 2007 11:25 GMT
On Jun 30, 11:04 am, rodchar <rodc...@discussions.microsoft.com>
wrote:
> hey all,
> i have a gridview of records and i'm trying to display the total pages with
[quoted text clipped - 9 lines]
> thanks,
> rodchar
totalpages = total / pageSize;
if (((float)total / pageSize) > totalpages) totalpages += 1;
Milosz Skalecki [MCAD] - 30 Jun 2007 11:38 GMT
Howdy,
TotalPages = ((RowCount - 1) / PageSize) + 1;
Hope this helps

Signature
Milosz
> hey all,
> i have a gridview of records and i'm trying to display the total pages with
[quoted text clipped - 9 lines]
> thanks,
> rodchar
rodchar - 30 Jun 2007 18:32 GMT
thank you everyone for the help.
rod.
> hey all,
> i have a gridview of records and i'm trying to display the total pages with
[quoted text clipped - 9 lines]
> thanks,
> rodchar