Re: How to create a new HTML document with cuteeditor?

  •  01-18-2007, 7:01 PM

    Re: How to create a new HTML document with cuteeditor?

    Thanks,Adam
    but the source code is as follows:
     void Page_Load(object sender, System.EventArgs e)
      {
         if (IsPostBack)
      {
       Editor1.SaveFile("document.htm");
       textbox1.Text = Editor1.Text;
         }
      else
      {
       Editor1.LoadHtml("document.htm");//load
      }  
     }
     
    she loads a HTML document,but didn't create it.
    if there wasn't "document.htm",how to create "document.htm" ?
     
     
    Filed under:
View Complete Thread