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
ASPSpellLink.useSession
This Boolean property is used to decide if the spell-check dialog will use the IIS Session object to accelerate the dialog for each user.
Using the session will reduce the bandwidth used by the ASPSpellCheck dialog, but will use more server memory.
The default value is defined in the settings file.
ASP VBScript Source Code:
If you wanted to your spellchecker to not use the session to accelerate the ASPSpellCheck dialog:
<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->
<textarea id= "MyTextArea" name="MyTextArea" cols="30" rows="10" >
Hello World. Ths izateztsampl.
</textarea >
<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="MyTextArea"
myLink.useSession= false 'no session acceleration
response.write myLink.imageButtonHTML("","","")
set myLink = nothing 'closes the class
%>
Note:
Session keys used by the ASPSpellCheck dialog are always prefixed with "ASPSPELLCHECK.FORMVARIABLES."
