ASPSpellLink.caseSensitive

This Boolean property is used to decide if the spell-check dialog will act in a case sensitive manner.The default value is defined in the settings file.

Also see the checkGrammar property.

If checkGrammar is set to true then the spellchecker can pickup irregularities in sentences even if caseSensitive is set to false.

Example

If you wanted to your spellchecker to ignore case mistakes in words:

<!--#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" ' sets an object ID to be spellchecked
myLink.caseSensitive=false  'not case sensitive

response.write myLink.imageButtonHTML ("","","") 'renders a button
set myLink = nothing  'closes the class
%>