Re: Cute Editor Changes NOT Saving Since Move to New Server

  •  07-20-2012, 7:32 AM

    Re: Cute Editor Changes NOT Saving Since Move to New Server

    Hi Chaplain,
     
    1. If replace the editor with a simple textbox, does it save correct?
     
    2. Please try the example page below on your site. Does it save correct?
     
    If this example page works, it means that the editor function has no problem.  You can use the same way on your own page. 
     
    1. <%@ Page Language="C#" ValidateRequest="false" %>  
    2.   
    3. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>  
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    5.   
    6. <script runat="server">  
    7.     protected void btnSave_Click(object sender, EventArgs e)  
    8.     {  
    9.         textBox1.Text = Editor1.Text;  
    10.     }  
    11. </script>  
    12.   
    13. <html xmlns="http://www.w3.org/1999/xhtml">  
    14. <head runat="server">  
    15.     <title>example</title>  
    16. </head>  
    17. <body>  
    18.     <form id="form1" runat="server">  
    19.         <div>  
    20.             <CE:Editor ID="Editor1" runat="server">  
    21.             </CE:Editor>  
    22.             <asp:Button ID="btnSave" runat="server" Text="save" OnClick="btnSave_Click" /><br />  
    23.             <asp:TextBox ID="textBox1" runat="server" TextMode="multiLine" Rows="10" Width="800"></asp:TextBox>  
    24.         </div>  
    25.     </form>  
    26. </body>  
    27. </html>  
     
    3. The permission problem.
     
    Please give the write/read permission to your site of folder "UploaderTemp" which under the root of your site.(if not there, please create a new one) 
     
    Regards,
     
    Ken 
View Complete Thread