RenderSearchResults - Solution Sites Routine

This function prepares the HTML that will render the search results contained in the passed Recordset object.

Definition

Function RenderSearchResults(
  byVal sPhrase,
  byVal rsResult,
  byVal iRecordCount,
  byVal style)

Parameters

  • sPhrase
    A string containing the search criteria, to be included in the resulting HTML.
  • rsResult
    A Recordset object containing the search results to include in the resulting HTML.
  • iRecordCount
    A number specifying the number of records in the Recordset object specified by the rsResult parameter, to be included in the resulting HTML.
  • style
    A string containing a space-separated list of "attribute=value" pairs to be passed to the RenderText function as its sAttList parameter, and used as attributes to the FONT element. This string, if non-empty, must begin with a space character.

Return Value

A string containing the HTML that will render the search results contained in the passed Recordset object.

Defined in File

include\catalog.asp

Routines Called

RenderSearchResultRow

RenderText

Called By

htmRenderFullTextSearchResults

Copyright © 2005 Microsoft Corporation.
All rights reserved.