Help > Web Development > Object Reference > Object Reference > ISYSResultList > Save Method
<a name="kanchor517"></a>ISYSResultList:Save Method
Saves the result list to a temporary file on disk and returns an identifier that can be used to reload the result list at a latter date. The format of the identifier is dependant on configuration.

Syntax
[VBScript]
function ISYSResultList.Save as object
[C#]
object IISYSResultList.Save();
[ColdFusion/Java]
object IISYSResultList.Save() throws ComException;
Examples
[VBScript]
<% ' This sample demonstrates executing the given search and saving it to disk ' and getting its identifier. ' Execute a pre-configured search set Results = ISYSSearch.Execute ' Save the search result and get the search id SearchID = Results.Save %>
Remarks
The Save function is useful when you need to use search results across multiple requests. The Save function will generate a unique filename and return you an identifier, so you do not need to implement your own naming scheme.

Files created by Save remain valid for 24 hours, after which they are deleted. Garbage collection occurs periodically and a result list main remain on disk for longer the 24 hours if there is no activity on the web server.

See Also