Re: CuteEditor deleting line breaks in Safari

  •  01-17-2013, 1:38 PM

    Re: CuteEditor deleting line breaks in Safari

    Hi thunderfan,

     

    please try the example page below with your currect version. Does it get the same problem? If yes, can you send me the editor page url and show me the full steps to reproduce this issue? So we can check it for you.

     

    1. <%@ Page Language="C#" AutoEventWireup="true" %>  
    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.   
    8.     protected void btn_save_Click(object sender, EventArgs e)  
    9.     {  
    10.         t1.Text = editor1.Text;  
    11.     }  
    12. </script>  
    13.   
    14. <html xmlns="http://www.w3.org/1999/xhtml">  
    15. <head id="Head1" runat="server">  
    16.     <title></title>  
    17. </head>  
    18. <body>  
    19.     <form id="form1" runat="server">  
    20.         <CE:Editor ID="editor1" runat="server" UseStandardDialog="true">  
    21.         </CE:Editor>  
    22.         <asp:Button ID="btn_save" runat="server" Text="save" OnClick="btn_save_Click" /><br />  
    23.         <asp:TextBox ID="t1" runat="server" TextMode="multiLine" Rows="8" Width="800px"> </asp:TextBox>  
    24.     </form>  
    25. </body>  
    26. </html>  
     

    If it works for you, then shoudl be some coding problem on your editor page, then please set up ftp access for me, we will check the code for you directy.

     

    You can send the info to Kenneth@CuteSoft.net

     

    Regards,

     

    Ken 

View Complete Thread