ASPSpellCheck Demos
Examples with full source-code
> Website Forms Spelling Validation
> Spell Check almost any Rich Editor
> Spell Check when Submitting a Form
> Backend ASP SpellCheck Functions
> Multilingual Spell Check
> Spell Check HTML Elements
> AJAX Spell Check
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
%>
