ASP Spell Check Demos - Hello World

A basic integration of ASPSpellCheck in a few lines of code.

ASPSpellCheck allows you to Spell check any form in your website, intranet or web-application. You may spellcheck any number of fields at the same time.

Source Code
<!--#include virtual="/ASPSpellCheck/ASPSpellInclude.inc"-->
<textarea name="MyTextArea" cols="50" rows="7" id="MyTextArea">
  Hello worlb.
</textarea>
<%  
	dim myLink
	set myLink = new AspSpellLink
	myLink.fields="MyTextArea"
	response.write myLink.imageButtonHTML("","","") ''Adds a button
	response.write myLink.spellAsYouType() ''Activates "as-you-type" 
	set myLink=nothing
%>
Tutorial
  • To install ASPSpellCheck download the zip, unarchive it and copy to the root directory of your site or localhost: /ASPSpellCheck
  • imageButtonHTML is used to draw a spellcheck button which opens the modal popup spellcheck window
  • spellAsYouType is used to activate the context-menu spellcheck with red underlines on textareas
  • fields is used to target any field or fields on the page for spellchecking. You can also use a comma separated list for multiple or groups such as: "all", "textareas", "textinputs", "editors" or ".anyCSSClass"