ASPSpellLink.externalCSS

This property is to attach an optional CSS stylesheet to the spellchecking Dialog.
If this property is not set, the default CSS will be resemble  Windows® XP.

There is a sample stylesheet included in the Assets folder within ASPSpellCheck.  To use this effectively, it is advisable to study the output HTML from the dialog.

ASP VBScript Source Code:

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

<textarea id="MyTextArea" name="MyTextArea" cols="30" rows="10" >
Hello World.
</textarea >

<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="MyTextArea"
myLink.externalCSS="Assets/sample.css" 'Dialog Uses External CSS
response.write myLink.imageButtonHTML("","","")
set myLink = nothing
%>