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
 

getSuggestionArray (strInput [, intMax])

This method works much like getSuggestionString , except it returns multiple results. IntMax can be used to set a limit of the number of results returned, the default is 3.

The most probably results come first in the array.

getSuggestionArray returns an array of spelling suggestion for strInput. If the string has no spelling mistakes, then getSuggestionArray returns an empty array with a UBound of -1.

disk repair software freeware Keylogger best software faqs
free mobile messaging data recovery shareware business solution
data recovery trial data recovery tools digital camera repair software

<%

set objDYM = server.createObject("ASPDidYouMean.DidYouMean")
strQuery = "Any strinng att all"
arrSuggest = objDYM.getSuggestionArray (strQuery)

for each strSuggest in arrSuggest
response.write strSuggest & "<br>"

next
set objDYM = nothing

%>

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