How to integrate NetSpell with FreeTextBox
The following code snippet show how integrate NetSpell with FreeTextBox.
Download the latest version of FreeTextBox and NetSpell.
Copy NetSpell.SpellChecker.dll to the bin folder and add the following files to the same folder as default.aspx for FreeTextBox.
- spell.css
- spell.js
- SpellCheck.aspx
Copy the dic folder to the FreeTextBox folder. Then modify the web.config file so the path to the dic folder matches.
<configuration>
<appSettings>
<add key="DictionaryFolder" value="dic" />
</appSettings>
</configuration>
Modify Default.aspx to look like this