Re: Problem with PasteHTML in IE 7 and 8

  •  02-25-2010, 12:06 AM

    Re: Problem with PasteHTML in IE 7 and 8

    Hi gspagel,
     
    It works fine for me both firefox and ie. Can you try the example below?
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Assembly="CuteEditor" Namespace="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5. <html xmlns="http://www.w3.org/1999/xhtml">   
    6. <head runat="server">   
    7.     <title>Untitled Page</title>   
    8. </head>   
    9.   
    10. <script runat="server">   
    11.     protected override void OnLoad(EventArgs e)   
    12.     {   
    13.         editor1.Text = "<p>This is the first sentence.</p><p>This is the second sentence.</p>";   
    14.   
    15.         base.OnLoad(e);   
    16.     }   
    17.       
    18. </script>   
    19.   
    20. <body>   
    21.     <form id="form1" runat="server">   
    22.         <CE:Editor ID="editor1" runat="server">   
    23.         </CE:Editor>   
    24.         <input type="button" onclick="setEditorHtml()" value="Set A link" />   
    25.         <script type="text/javascript">   
    26.         var editor = document.getElementById('<%= editor1.ClientID %>');   
    27.         var selectedhtml="test";   
    28.         function setEditorHtml()   
    29.         {   
    30.             var html = '<a href="~/link.aspx?_id=&amp;_z=z">' + selectedhtml + '</a>';   
    31.             editor.PasteHTML(html);   
    32.         }   
    33. </script>   
    34.     </form>   
    35. </body>   
    36. </html>  
    Regards,
     
    Ken
View Complete Thread