Page Parameters

A page parameter is used to scroll page by page within a paged list (such as a high score list).  Page parameters are not case-sensitive and can be entered as a URL parameter or in a form.  

The following are list of valid page parameters:

Field name

Description

FD_row_offset

The index of the first row in the list to display (0 is the beginning of the list).  If parameter not present, defaults to 0.

FD_row_display

The number of rows on the page to display, or -1 to display all rows.  If parameter not present, defaults to 10.  

 

Example:

 

#if($ScoreList.HasNext)
<a href="strategies.htm?FD_row_offset=$ScoreList.NextOffset">Next&gt;&gt;</a>
#end

 

 

For more information on how to create a high score list, please read the following:

How to Create a High Score List

 

For more information on how to work with paged lists, please read the following:

Working with Lists