$WBFirstPage - navigation link to first report page

Availability
QUERY command

Syntax
$WBFirstPage
$WBFirstPage[]

Returns
Link to the first page of the report.

Here's an example:

<!--
[FormFields]
WB_basename=biblio.mdb
wb_rcdset=titles
wb_command=Q
wb_maxrec=5
wb_startrec=$wbif{"$wbv{wb_startrec}"=""|16|$wbv{wb_startrec}}
-->
<!--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>Back to $WBFirstPage</center>
</body>
</html> 
 
After running this example, WBSP will display the report with link to first page only:
Back to First page