ASPSpellLink.ignoreNumbers

This Boolean property is used to decide if the spell-check dialog will ignore words containing numbers such as "$100mill" or "8Ball".

The default value is defined in the settings file .

Example

If you wanted to your spellchecker to ignore words with numbers in them:

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

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

<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="MyTextArea"

myLink.ignoreNumbers= true
'Numeric Words Ignored


response.write myLink.imageButtonHTML("","","")
set myLink = nothing
%>