Server Side Spell Checking Tutorial

ASPSpellCheck has a set of back-end ASP functions which you can use when building your own applications

The spellingCheck function returns true or false for a given word or phrase.

The spellingSuggestions  function returns an array of spelling suggestions.

 

Source Code

<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc" -->

<%
myWord="Helllo"

set myLink = new AspSpellLink

if myLink.spellingCheck(myWord) then
    response.write "Spelling is good"
else
    response.write "Spelling is bad. Suggestions:"
    response.write Join( spellingSuggestions(myWord),", ")
end if
%>


< More Demonstrations of ASP Spell Checking Applications