For details on setting up AutoComplete please see http://keyoti.com/products/search/dotNetWeb/Help2010/UserGuide/AutoComplete.htm When using IIS7, by default HttpHandler’s won’t run in your web.config file. In order to setup AutoComplete you will also need to follow these points; 1. Add this to the system.webServer section of the web.config
<staticContent> <mimeMap fileExtension=".ashx" mimeType="text/html" /> </staticContent> 2. Add this to the "handlers" section, under system.webServer (be careful not to add it to httpHandlers, where it's already present) <add name="keyoti.search" path="Keyoti.SearchEngine.Web.CallBackHandler.ashx" verb="*" type="Keyoti.SearchEngine.Web.CallBackHandler,Keyoti2.SearchEngine.Web,Version=3.?.?.?, Culture=neutral, PublicKeyToken=58d9fd2e9ec4dc0e"/> where 3.?.?.? should be replaced with the version number of the Keyoti2.SearchEngine.Web DLL. If you have any questions please contact support at keyoti.com |