ASPSpellLink.linkHTML(linkText,CSSclass)

The method linkHTML returns a W3C compliant HTML/XHTML string which can be used to add a spell-checking hyperlink to your ASP web pages.

Example link:  

spellcheckr link 


The linkText parameter represents the text of the link. If set to an empty string (e.g. "") then the default value will be "Spell Check"

The parameter CSSclass allows you to nominate a CSS class to be applied to the link (anchor tag). If set to an empty string (e.g. "") , no CSS class will be applied.

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.fields="MyTextArea"
response.write myLink.linkHTML("SpellCheck","")
set myLink=nothing
%>

Result:

spellchecker link & dlialog