ASPDidYouMean Live Demo
Other Features
> Google style search spelling suggetions
>
Intelligent, relevant suggestions
> Multiple Results possible
> Support for over 10 langauges
> Database Connective Dictionaries
> Custom Dictionaries
Add Sophisticated Spell-Checking to your Search.
Tutorial
To spell check a search string - we use the getSuggestionString function..
The below expression will make spelling suggestions for the string strQuery. The results are returned as the string strSuggest.
<!--#include virtual="/ASPDidYouMean/ASPDidYouMean.asp"-->
<%
SET dym = ASPSpellObjectProvider.create("ASPDIDYOUMEAN")
dym.AddDictionary("English (Fast)")
strSuggest = dym.SuggestionString(strQuery)
%>
3 lines of code. It's that simple! This functionality can be integrated into most search applications in minutes.
Further Ideas
You can also return multiple results using the function getSuggestiosnArray, or use AddDictionary to select which international dictionaries you wish to use.Advanced developers can use the AddVocabularyFile and AddVocabularyArray functions for database connectivity.
