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="all"
response.write myLink.spellAsYouType() ''Activates "as-you-type"
set myLink=nothing
%>
Tutorial
- fields is used to target any field or fields on the page for spellchecking. You can also use a comma separated list for multiple or groups such as: "all", "textareas", "textinputs", "editors" or ".anyCSSClass"