Simple
Once DbNetSpell has been installed on your server, you can quickly and simply include its spell-checking capabilities in new and existing applications. Since DbNetSpell is implemented as a fully encapsulated component, it is usually sufficient to attach a CSS class to existing TEXTAREA or INPUT element and then provide a mechanism for calling the spellchecker.
Existing Code
<textarea id="comments" style="width:300px;height:200px"></textarea>
Using DbNetSpell
<textarea id="comments" class="dbnetspell" style="width:300px;height:200px"></textarea>
<button onclick="document.getElementById('comments').check()">Spell</button>