Help > Web Development > Object Reference > Object Reference > ISYSResultList > SaveUpdates Method
<a name="kanchor520"></a>ISYSResultList:SaveUpdates Method
The SaveUpdates method differs from the Save method in that it will re-use the existing Search ID if one is present. If there is not Search ID, a new one is generated.

Syntax
[VBScript]
function ISYSResultList.SaveUpdates as object
[C#]
object IISYSResultList.SaveUpdates();
[ColdFusion/Java]
object IISYSResultList.SaveUpdates() 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 dim Results : set Results = ISYSSearch.Execute ' Save the search result and get the search id dim SearchID : SearchID = Results.SaveUpdates %>
See Also