Help > Web Development > Object Reference > Code Samples > ASP > Reloading a previously saved result list.
<a name="kanchor590"></a>Reloading a previously save result list.
Demonstrates reloading a previously saved result list. This is useful when showing results in a paged fashion (1-10, 11-20...)

<% ' Create the ISYS engine, you could use a cached copy set isys = Server.CreateObject("ISYS.ISYSAsp") ' Create a new search object set search = isys.NewSearch ' Prepare the search source, SearchID is the ID of a previously executed search search.QuerySource = Request("SearchID") ' Execute the search, returns the result list object of the previous search set results = search.Execute %>