$WBPageNums - links to separate report pages

Availability
QUERY command

Syntax
$WBPageNums
$WBPageNums[]

Returns
Separate links to every page of the report.

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>$WBPageNums</center>
</body>
</html> 
 
After running this example, WBSP will display the report with separate links to every page of the report:
1 2 3 4 5 6