<%
' This sample demostrates creating a new ISYSSearch object and specifying the' QueryText, QuerySource and QueryType and executing it to get the result list.' Create the new ISYSSearch objectdim ISYSSearch : set ISYSSearch = ISYSEngine.NewSearch
' Specify the Index to Search
ISYSSearch.QuerySource = "c:\indexes\documents"' Specify the Query Text
ISYSSearch.QueryText = "Policies"' Specify the Query Type
ISYSSearch.QueryType = isysQueryISYS
' Execute the Searchdim SearchResults : set SearchResults = ISYSSearch.Execute%>