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
Add an ASP Spell Checker to Website Forms
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.
