ASPSpellLink.doneMessage

The doneMessage property is used to decide give an optional Javascript "Alert" at the end of spell checking. The doneMessage property is of type string. 

You can customise this message as desired.

ASP VBScript Source Code:

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

<textarea id="MyTextArea" name="MyTextArea" cols="30" rows="10" >
Hello World.  Ths iz a tezt sampl. 
</textarea>

<% 
dim myLink
set myLink = new AspSpellLink
myLink.doneMessage="Spell Checking Completed!"
myLink.fields="MyTextArea"
response.write myLink.imageButtonHTML("","","")
set myLink = nothing 
%>