ASPSpellLink.spellingCheck(strWord)

The method spellingCheck spell checks a string in ASP.  It returns either true or false.

Example:

<%
dim myLink, myResult
set myLink = new AspSpellLink
myResult = myLink.spellingCheck("Hello World")
set myLink=nothing
%>

Outcome: myResult is true.

Learn more