Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / June 2007

Tip: Looking for answers? Try searching our database.

total pages

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
rodchar - 30 Jun 2007 10:04 GMT
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

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.