|
addCustomDictionaryFromArray
Creates a custom dictionary from an array without actually using a text file, this is useful for database integration.
strID is a string Is used to identify the Array for updatiing purposes and getCustomDictionaryModifiedDate
arrWordsArray is an array for words, ideally in alphabetical order
binOverWrite If binOverWrite is set to false, then an existing array of the same Id will not be overwritten.
Example
<%
set objDYM = server.createObject("ASPDidYouMean.DidYouMean")
arrWordsArray= Array("jacob","lynann","samuel")
objDYM.addCustomDictionaryFromArray "NAMES",arrWordsArray , True
%>
|