A basic integration of ASPSpellCheck in a few lines of code.
ASPSpellCheck allows you to Spell check any form in your website, intranet or web-application. You may spellcheck any number of fields at the same time.
Source Code
<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->
<textarea name="MyTextArea" cols="50" rows="7" id="MyTextArea">
Hello worlb.
</textarea>
<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="MyTextArea"
response.write myLink.imageButtonHTML("","","") ''Adds a button
response.write myLink.spellAsYouType() ''Activates "as-you-type"
set myLink=nothing
%>