ASPSpellLink.checkGrammar

This Boolean property is used to decide if the spell-check dialog will find basic grammar mistakes such as repeated words, poor sentence casing etc.

The default value is defined in the settings file.

ASP VBScript Source Code:

If you wanted to your spellchecker to ignore grammatical mistakes :

 

<!--#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.checkGrammar= false 'grammar check turned off

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