Help > Web Development > Object Reference > Object Reference > ISYSResultList > Store Property
<a name="kanchor527"></a>ISYSResultList:Store Property
Store values with the result list that are persisted with the result list.

Syntax
[VBScript]
 property ISYSResultList.Store(string Key) as string
[C#]
string IISYSResultList.get_Store(
  string Key);
void IISYSResultList.set_Store( string Key, string value);
[ColdFusion/Java]
java.lang.String ISYSResultList.Store(
  java.lang.String Key
) throws ComException;
void ISYSResultList.set_Store( java.lang.String Key, java.lang.String value );
Parameters
KeyThe key that is used to fetch and set the value

Examples
[VBScript]
<% ' This sample demonstrates storing user-defined values with the result list. ' Execute a pre-configured search Set Results = ISYSSearch.Execute ' Store the search date Results.Store("QueryTime") = Now ' ... Response.Write "Query time was " & Results.Store("QueryTime") %>