|
getLanguagesAsArray()
Returns an array of the installed dictionary names. These are the names of the dictionaries (*.dic) installed in C:\Program Files\AspDidYouMean\Dictionaries. The values match the file names, without the .dic extension
Example
<%
set objDYM = server.createObject("ASPDidYouMean.DidYouMean")
arrLangs = objDYM.getLanguagesAsArray()
response.write Join (arrLangs , " , ")
set objDYM = nothing
%>
Note
If you need to install further dictionaries (dic files), you can download them from www.aspdidyoumean.com.
Copy them to C:\Program Files\AspDidYouMean\Dictionaries
|