"
'Display that the URL is randomly generated
If Request.QueryString("mode") = "random" Then
Response.Write vbCrLf & " Random URL. | "
'Display that we are showing a page of the latest URL's indexed
ElseIf 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 web for " & strSearchKeywords & ". 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 web for " & strSearchKeywords & ". Sorry, no results found. | "
'Else Search went OK so display how many records found
Else
Response.Write vbCrLf & " Searched the web for " & strSearchKeywords & ". Displaying Results " & intRecordDisplayFrom & " - " & intRecordDisplayedTo & " of " & intTotalRecordsFound & ". | "
End If
'Close the HTML table with the search status
Response.Write vbCrLf & "
"
Response.Write vbCrLf & "