ASPSpellCheck Demos
Examples with full source-code
> Website Forms Spelling Validation
> Spell Check almost any Rich Editor
> Spell Check when Submitting a Form
> Backend ASP SpellCheck Functions
> Multilingual Spell Check
> Spell Check HTML Elements
> AJAX Spell Check
FCK Editor Spell Check Plugin
The Plugin :
FCKEditor is probably the worlds most popular, internet based HTML Editor. Due to popular demand - ASPSpellCheck now offers a full FCKEditor Plugin.
The plugin provides spellchecking from the FCK Editor toolbar - and does not require any ActiveX installation or complex PERL setups. (such as iespell or spellerpages)
Tutorial:
- Download and Install ASPSpellCheck to your website by unzipping it and copying the ASPSPellCheck directory to the root of your site.
- Download the plugin, unzip it and copy the plugins/ASPSpellCheck folder to the /FCKEditor/editor/plugins/ASPSpellCheck directory in your website.
- In /FCKEditor/fckconfig.js register the plugin using this code (on or below line 52):
FCKConfig.Plugins.Add( 'ASPSpellCheck' )
- Still in /FCKEditor/fckconfig.js, edit your FCKToolbarSets (around line 99). Remove any SpellCheck button and add a ASPSpellCheck button.
e.g:
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','ASPSpellCheck']
] ;
- Copy this code in to the header of your web page, & customize as required.:
<script type="text/javascript">
<!--#include virtual= "/ASPSpellCheck/ASPSpellInclude.inc"-->
<%
dim myLink, strSpellURL
set myLink = new AspSpellLink
myLink.fields="__FCKEDITOR__"
strSpellURL = myLink.url
set myLink=nothing
%>
FCKAspSpellCheck = {}; FCKAspSpellCheck.URI = '<%=strSpellURL%>' ;
</script>
-
Add FCKEditor to your page as normal.
