"
'Display that we are showing a page of the latest URL's indexed
If Request.QueryString("mode") = "new" Then
Response.Write vbCrLf & " The " & intRecordsPerPage & " latest URL's Indexed. | "
'Display that one of the words entered was to short
ElseIf blnSearchWordLenthOK = False Then
Response.Write vbCrLf & " Searched the database for " & Request.QueryString("search") & ". One of the words searched is to short. | "
'Display that there where no matching records found
ElseIf adoRec.EOF Then
Response.Write vbCrLf & " Searched the database for " & Request.QueryString("search") & ". Sorry, no records found. | "
'Else Search went OK so display how many records found
Else
Response.Write vbCrLf & " Searched the database for " & Request.QueryString("search") & ". Displaying Records " & intRecordDisplayFrom & " - " & intRecordDisplayedTo & " of " & intTotalRecordsFound & ". | "
End If
'Close the HTML table with the search status
Response.Write vbCrLf & "
"
Response.Write vbCrLf & "