Posts: 5,938
Name: Adam for web page design, not program
Location: Toronto, Ontario, Canada
|
They usually are, based on a concept called recordset paging. Recordset paging is pretty simple: you assign a number of records you want on any page (call it X).
For page 1, records 1 to X appear.
For page 2, records X + 1 to 2X appear.
For page 3, records 2x + 1 to 3X appear.
And so on and so on, all fully automated.
As far as keeping your index page a fixed size is concerned, you wouldn't be able to do this in terms of height without an additional scrollbar at some point, since people will be able to resize your text in Firefox and most other browsers even if you set it as a pixel-sized font. Paging is a good idea to keep a site from getting "too long", but it won't solve the problem of "I want it X pixels high."
|