Add an ASP Spell Checker to Website Forms

Spell Check

 

Tutorial

To add a spellchecker to your webite should only take a few minutes. FIrstly you need to install ASPSpellCheck.

Source Code

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

<%
set myLink = new AspSpellLink
myLink.fields="MyTextArea"
response.write myLink.imageButtonHTML("","","")
set myLink = nothing
%>

Only a few lines of code are used. It's that simple!  

The fields property identifies the field(s) to be spell checked. If there is more than one, use a comma separated list.

< More Demonstrations of ASP SpellChecker Applications