|
<%
If (firstRecord > 1) Then
firstRecord = firstRecord - recordsPerPage
If (firstRecord < 1) Then
firstRecord = 1
End If
response.write "" & vbCrLf
End If
%>
|
<%
If (lastRecord < totalRecords) Then
firstRecord = lastRecord + 1
response.write "" & vbCrLf
End If
%>
|