$WBNavigator - full set of report navigation links

Availability
QUERY command

Syntax
$WBNavigator
$WBNavigator[]

Returns
Full set of report navigation links (page-number links and links to first, last, previous and next page).

Here's an example:

<!--
[FormFields]
WB_basename=biblio.mdb
wb_rcdset=titles
wb_command=Q
wb_maxrec=5
-->
<!--WB_BeginTemplate-->
<html>
<head>
<title>Titles</title>
</head>
<body>
<table border="1" cellspacing="0">
<tr>
<td>Year published</td>
<td>Title</td>
<td>ISBN</td>
</tr>
<!--WB_BeginDetail-->
<tr>
<td>$wbf[Year published]</td>
<td>$wbf[title]</td>
<td>$wbf[ISBN]</td>
</tr>
<!--WB_EndDetail-->
</table>
<center>$WBNavigator</center>
</body>
</html> 
 
After running this example, WBSP will display the report with all navigation links at the bottom, separate links to every page (page-number links) and links to first, last, previous and next page:
1 2 3 4 5 6
First page Previous page Next page Last page