Whether to provide auto-complete suggestions to the user as they type in the query text box (see remarks).
            
| C# | Visual Basic | Visual C++ | 
public virtual bool AutoCompleteQuery { get; set; }
Public Overridable Property AutoCompleteQuery As Boolean
public: virtual property bool AutoCompleteQuery { bool get (); void set (bool value); }
            This feature requires;
            i) The web.config file must be edited to add the following HttpHandler
            
CopyC#
            
            ii) The AutoCompleteQueryIndexDirectory property must be set to the index directory that the search will be performed on, or the Keyoti-SearchEngine-IndexDirectory web.config appSetting must be set.
            
<httpHandlers>
        <add verb="*" path="Keyoti.SearchEngine.Web.CallBackHandler.aspx" type="Keyoti.SearchEngine.Web.CallBackHandler,Keyoti.SearchEngine.Web.ASP.NETv2"/>
        </httpHandlers>