Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact Us Request to publish your help manuals Request to remove your help manuals

Introduction
 » ASPSpellCheck
 » What's New?
 » Getting Started
Installations & Settings
 » Installation Process
 » Compatibility
 » Installing Dictionaries
 » Enforced Corrections
 » Custom Dictionary
 » Settings File
Usage
 » Usage Basics
 » ASPSpellLink Class
 » Properties
 » Methods
 » Notes
 » ASP.Net Spell Check Compatibility
Examples
 » Basic SpellCheck
 » Server Side Spellchecking
 » Language Variants
 » Submitting Form
 » WYSIWYG Usage
Support Detail
 » Free Trial
 » Registering
 

ASPSpellLink Class

The ASPSpellLink Class allows you to add a link or button to an ASP page which will initiate the spell checker. It also allows you to modify the spell checker - for example: setting the dialog language to French, or choosing a German dictionary.

Using this class, you can spell-check almost any HTML form field, or HTML element. You can also spell-check multiple fields at once.

The file /ASPSpellCheck/ASPSpellInclude.inc must be included into your ASP script to use the ASPSpellLink Class.

disk repair utilities digital camera repair software free windows repair
keystroke logger stealth keylogger data leakage protection
best software faqs software update freeware data recovery

Using ASPSpellLink
The code below shows an example of opening and closing the ASPSpellLink Class.

<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->
<textarea id="MyTextArea" name="MyTextArea" cols="30" rows="10" >
Hello World
</textarea>

<%

dim myLink
set myLink = new AspSpellLink 'opens the class
myLink.fields="MyTextArea" ' sets an object ID to be spellchecked
response.write myLink.imageButtonHTML("","","") 'renders a button
set myLink= nothing 'closes the class

%>

Home | Contact Us | Request to publish your help manuals | Request to remove your help manuals