Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact Us Request to publish your help manuals Request to remove your help manuals

Introduction
 » ASP DidYouMean
Object Reference
 » Object Reference
 » getSuggestionString(strInput)
 » getSuggestionArray (strInput [, intMax])
 » getLanguagesAsArray()
 » setLanguages(strDictionaryName)
 » addCustomDictionary(strFileName)
 » addCustomDictionaryFromArray
 » getCustomDictionaryModifiedDate
 » getSafeQuery (strInput)
 » setBannedWords(arrWordsArray)
 » setRegKey(strKey)
Example
 » Basic Implementation
 » Multiple Results
Registration Detail
 » Registration
 

getSuggestionString(strInput)

This is the main method of ASP DidyouMean. You input a search query as a string.
It returns a highly optimized spelling suggestion aimed at providing better search-engine results.

If the string has no spelling mistakes, then getSuggestionString returns an empty string ("").

Example

data recovery trial data recovery tools digital camera repair software
free mobile messaging disk repair freeware disk repair utilities
system usb monitor data recovery shareware freeware data recovery

<%

set objDYM = server.createObject("ASPDidYouMean.DidYouMean")
strQuery = "Any strinng at all"
strSuggest = objDYM.getSuggestionString(strQuery)

response.write strSuggest
set objDYM = nothing

%>

Home | Contact Us | Request to publish your help manuals | Request to remove your help manuals