Re: Cute soft editor - English and Hebrow

  •  11-04-2009, 3:39 AM

    Re: Cute soft editor - English and Hebrow

    Hi Kuimov,
     
    Two ways
     
    1.  
    1. <%@ Page Language="C#" AutoEventWireup="True" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  
    5.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    6. <html xmlns="http://www.w3.org/1999/xhtml">   
    7. <head id="Head1" runat="server">   
    8. </head>   
    9.   
    10. <script runat="server">   
    11.     protected override void OnLoad(EventArgs e)   
    12.     {   
    13.         if (!IsPostBack)   
    14.         {   
    15.             editor1.Text = "<style>body{direction:rtl;text-align:right}</style>";   
    16.         }   
    17.   
    18.         base.OnLoad(e);   
    19.     }   
    20.   
    21. </script>   
    22. <body>   
    23.     <form id="Form1" runat="server">   
    24.         <CE:Editor ID="editor1" runat="server" EditCompleteDocument="true" EnableStripStyleTagsCodeInjection="false">   
    25.         </CE:Editor>   
    26.     </form>   
    27. </body>   
    28. </html>  

    2.
    1. <%@ Page Language="C#" AutoEventWireup="True" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  
    5.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    6. <html xmlns="http://www.w3.org/1999/xhtml">   
    7. <head id="Head1" runat="server">   
    8. </head>   
    9. <body>   
    10.     <form id="Form1" runat="server">   
    11.         <CE:Editor ID="editor1" runat="server" EditCompleteDocument="true" EnableStripStyleTagsCodeInjection="false">   
    12.         </CE:Editor>   
    13.     </form>   
    14. </body>   
    15. </html>   
    16. <script>   
    17. function CuteEditor_FilterHTML(editor,code)   
    18. {   
    19.  return code.replace(/(<body[^\>]*\>)/i, '<body style="direction:rtl;text-align:right">');   
    20. }   
    21. function CuteEditor_FilterCode(editor,code)   
    22. {   
    23.  return code.replace(/(<body[^\>]*\>)/i, '<body style="direction:rtl;text-align:right">');   
    24. }   
    25. function CuteEditor_OnInitialized(editor)   
    26. {   
    27.  editor.ExecCommand("TabCode");   
    28.   editor.ExecCommand("TabEdit");   
    29. }   
    30. </script>  
    Regards,
     
    Ken
View Complete Thread