ASP Spell Check Demos - Spell-As-You-Type

Use spellAsYouType to add in-context spellchecking with 'red-wiggly-underlines' to any or all textareas on a web page.

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="all"
	response.write myLink.spellAsYouType() ''Activates "as-you-type" 
	set myLink=nothing
%>
Tutorial
  • 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"