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
 

WYSIWYG Usage

Please see the full tutorial on Rich Editor Integration and try the FCKEditor Spellchecker Plug-in: http://www.aspspellcheck.com/demo-wysiwyg-html-editor-spellchecking.asp

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%option explicit%>

<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" http://www.w3.org/TR/html4/loose.dtd>

keystroke logger software update free mobile messaging
system usb monitor best software help setup maker
disk repair freeware business solution freeware data recovery

<html>
<head>
<title>ASPSpellCheck Sample</title>
</head>
<body>

<textarea name="myWYSIWYG" cols="30" rows="10" id="myWYSIWYG" >
Hello World.
</textarea>

<br>

<%
dim myLink
set myLink = new AspSpellLink
myLink.fields="iframe:0"
response.write myLink.imageButtonHTML ("","","")
set myLink=nothing
%>

</body>
</html>

Outcome:

Spellchecking for the WYSIWYG HTML Editor

Notes:
There are HTML numerous WYSIWYG editors available on the internet. A good resource to find one is http://www.htmlarea.com

For most WYSIWYG editors, you need to ASPSpellCheck the Iframe which the WYSIWYG uses. The Fields property should be set to iframe:myWYSIWYGFrameId.

If you don't know the ID of your editor, Iframe:0 points to the first frame or Iframe in the DOM. iframe:1 points to the second etc...

FCK Editor:

myLink.fields="iframe:MyTextArea___Frame.0"
Where MyTextArea is the ID of the Textarea to be spellchecked.

There is now an FCKeditor Plugin for ASPSpellCheck: http://www.aspspellcheck.com/fck-editor-asp-spell-check-plugin.asp

YUSASP Editor (formerly Innova):

myLink.fields="iframe:idContentoEdit1"

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