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."