CuteEditor for ASP 6.1 Class Library

Editor.PrintFullWebPage Property

By default Cute Editor will print the content in the editing area only. When this property is set to true, Cute Editor will print the whole web page.


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->FilesPath="CuteEditor_Files";
         $editor->PrintFullWebPage=true;
         $editor->Draw();
         $editor=null; 

         //use $_POST["Editor1"]to catch the data
?>

See Also

Editor Class | CuteEditor Namespace