ASPSpellLink.ignoreWebAddresses

This Boolean property is used to decide if the spell check dialog will ignore words which resemble web addresses such as "http://www.aspspellcheck.com" or "Ebay.com" and email addresses.


The default value is defined in the settings file.

Sub Header

If you wanted to your spellchecker to ignore web addresses and email addresses:

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

<textarea id="MyTextArea" name="MyTextArea" cols="30" rows="10" >
Hello World. http://www.aspnetspell.com
</textarea >

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

myLink.ignoreWebAddresses= true
'URLS and Emails Ingnored


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