Help > Web Development > Object Reference > Object Reference > ISYSResultList > QueryString Property
<a name="kanchor511"></a>ISYSResultList:QueryString Property
Returns the text of the query used to produce the result list. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSResultList.QueryString as string
[C#]
string IISYSResultList.QueryString {get;}
[ColdFusion/Java]
java.lang.String ISYSResultList.QueryString() throws ComException;
Examples
[VBScript]
<% ' This sample demonstrates removing documents from a result list ' Execute a pre-configured search dim Results : set Results = ISYSSearch.Execute %> Your search for "<%= Results.QueryString %>" found <%= Results.TotalHits %> hits in <%= Results.NumberDocs %> documents