Re: Strange Error When Editing or Adding Pages - With HTML in Pages

  •  09-18-2009, 9:52 AM

    Re: Strange Error When Editing or Adding Pages - With HTML in Pages

    Please try the following code. In the target page, please print the content of Cute Editor.
     
    1. <?php include_once("CuteEditor_Files/include_CuteEditor.php") ; ?>   
    2. <html>   
    3.     <head>   
    4.     </head>   
    5.     <body>   
    6.     <form name="theForm" action="Get_HtmlContent.php" method="post">   
    7.             <?php   
    8.                 $editor=new CuteEditor();   
    9.                 $editor->ID="Editor1";   
    10.                 $editor->Text="Hello World";        
    11.                 $editor->EditorBodyStyle="font:normal 12px arial;";   
    12.                 $editor->Draw();   
    13.                 $editor=null;   
    14.                    
    15.                 //use $_POST["Editor1"]to catch the data    
    16.             ?>   
    17.         </form>   
    18.     </body>   
    19. </html>  

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread