Online Documentation
- Introducing ASPSpellCheck
- Introduction to ASPSpellCheck
- What's New
- Getting Started
- Installation and Settings
- Installation Process
- Compatibility
- Installing Dictionaries
- Your Custom Dictionary
- Enforcing Spelling Corrections
- The Settings File
- Usage
- Basics
- ASPSpellLink Class
- Properties
- caseSensitive
- checkGrammar
- dictionary
- dialogLanguage
- doneMessage
- externalCSS
- fields
- hideSummary
- ignoreAllCaps
- ignoreNumbers
- ignoreWebAddresses
- javaScriptCallback
- newSentanceOnEachNewLine
- useSession
- ASPSpellPath
- Methods
- buttonHTML
- buttonXHTML
- imageButtonHTML
- imageButtonXHTML
- linkHTML
- spellingCheck
- spellingSuggestions
- url
- Notes for Advanced Developers
- ASP.Net Compatibility
- Caching
- Examples
- Basic SpellCheck
- Server Side Spellchecking
- Language Variants
- Submitting a Form
- Rich Editors
- Licenses & Registration
- Free Trial
- Registering
- License Agreement
Getting Started with ASPSpellCheck
Installation Basics
In brief, ASPSpellCheck is installed by copying the downloaded directory "ASPSpellCheck" to the root of your website.
Usage Basics
You can add a spell-check link or button to almost any Form Field or HTML element within your application using the ASPSpellLink Class.
Its basic usage is shown below:
<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->
<textarea id="MyTextArea" name="MyTextArea" cols="30" rows="10" >
Hello World. Ths iz a tezt sampl.
</textarea>
<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="MyTextArea" 'Sets the Field id(s) to be spell-checked
response.write myLink.imageButtonHTML("","","")
set myLink=nothing
%>
Dictionary Basics
You can install additional language dictionaries such as French, Spanish, German, Dutch, Portuguese and many Specialized English dictionaries. The dictionaries have the file extension .dic.
To install these dictionaries - first download them from www.aspspellcheck.com and place them in the "Dictionaries" directory within your ASPSpellCheck Directory.
