0) Then
@@rsName@@.MoveFirst
Else
@@rsName@@.Requery
End If
' set the number of rows displayed on this page
If (@@rsName@@_numRows < 0 Or @@rsName@@_numRows > @@rsName@@_total) Then
@@rsName@@_numRows = @@rsName@@_total
End If
' set the first and last displayed record
@@rsName@@_first = 1
@@rsName@@_last = @@rsName@@_first + @@rsName@@_numRows - 1
If (@@rsName@@_first > @@rsName@@_total) Then
@@rsName@@_first = @@rsName@@_total
End If
If (@@rsName@@_last > @@rsName@@_total) Then
@@rsName@@_last = @@rsName@@_total
End If
End If
%>
]]>