ASP.Net Spell Check Compatibility


Before reading this article - we suggest that you review our sister project - ASPNetSpell www.aspnetspell.com



ASPSpellCheck is easily compatible with ASP.NET

First, install copy ASPSpellCheck by copying it to the root of your website.
The following code will add spell checking capabilities to a button:

Source Code in VB.NET

Fields = "Textbox1"

Button1.Attributes.Add("onclick", "window.open ('\\ASPSpellCheck/ASPSpellCheck.asp?fields=" + Fields + "','aspSpellWin','width=460, height=290, scrollbars=no')")

Button1 is name of the button which will initiate spell checking.

Fields is the name of a text box to be spell checked, if you wish to spellcheck more than one - use a comma separated list.

You can use the settings file to customize the spell checker in detail.

 

Advanced Usage

You can also set any property of the spellchecker by adding that property to the URL query string.

e.g.  &dictionary=Francais&ignoreAllCaps=true