ASPSpellLink.ASPSpellPath

This property is used to set the full path to the ASPSpellCheck directory within your site.  It should be used as an absolute path with respect to the root of your website.

ASPSpellLink.ASPSpellPath is a string.

The default value of ASPSpellLink.ASPSpellPath is "/ASPSpellCheck/". 

This property need only be set if this is not the full path to the folder in which you installed ASPSpellCheck.

Example

If you installed ASPSpellCheck in the directory "/Components/ASP/ASPSpellCheck/" then an example usage might be:

Sub Header

If you installed ASPSpellCheck in the directory "/Components/ASP/ASPSpellCheck/" then an example usage might be:

<!--#include virtual= "/Components/ASP/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.ASPSpellPath="/Components/ASP/ASPSpellCheck/"

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

%>