Charles - When submitting your form, you need to perform the following for the editor content to be captured:
function submitForm() {
save(Editor1)
document.forms[0].submit() ;
}
....then on the ASP page that receives the form, you can retrieve the posted content with the following:
Replace(Request.Form("Editor1_HTMLContent"),"'","''")
Note: I named my CuteEditor: Editor1
Hope this helps. Cheers, Kris.