Help > Web Development > Object Reference > Object Reference > ISYSResultList > Prepare Method
<a name="kanchor509"></a>ISYSResultList:Prepare Method
Prepares the specified range of the result list. This will force the given range to be authenticated.

Syntax
[VBScript]
sub ISYSResultList.Prepare(_
  long First, _ 
  long Count_ 
)
[C#]
void ISYSResultList.Prepare(
  long First, 
  long Count
);
[ColdFusion/Java]
void IISYSResultList.Prepare(
  long First, 
  long Count
) throws ComException;
Parameters
FirstIndex of the first item in the range to be prepared.
CountThe number of items that are required.

Examples
[VBScript]
<% ' Execute a preconfigured ISYSSearch object Set Results = ISYSSearch.Execute ' Ensure the range that we want to display is prepared Results.Prepare FirstItem, ItemsPerPage %>