Io uso lo stesso editor in alcune pagine :
nella head :
codice:
<script type="text/javascript" src="/crescentino/editor/scripts/wysiwyg.js"></script>
<script type="text/javascript" src="/crescentino/editor/scripts/wysiwyg-settings.js"></script>
<script type="text/javascript">
// Use it to attach the editor to all textareas with full featured setup
WYSIWYG.attach('textarea1',small);
// Use it to attach the editor directly to a defined textarea
</script>
questo il codice della textarea :
codice:
<textarea id="textarea1" name="test1"><%=valoredaDB%></textarea>
e nella pagina che salva su db
codice:
Tabella.Fields("nomecampo") = request.Form("test1")