Re: Where is the content saved to the page?

  •  03-07-2005, 5:13 AM

    Re: Where is the content saved to the page?

    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.
     
View Complete Thread