Re: getting the content of Editor1.Text; blank

  •  05-04-2010, 2:21 AM

    Re: getting the content of Editor1.Text; blank

    Hi svk and sade1125,
     
    Try the example below
     
    1. <%@ Page Language="VB" 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.   
    8.     Protected Sub button1_Click(ByVal sender As ObjectByVal e As System.EventArgs)   
    9.         Dim editorText = tbServer.Text   
    10.         label1.Text = editorText   
    11.     End Sub  
    12. </script>   
    13.   
    14. <html xmlns="http://www.w3.org/1999/xhtml">   
    15. <head runat="server">   
    16.     <title>Untitled Page</title>   
    17. </head>   
    18. <body>   
    19.     <form id="form1" runat="server">   
    20.         <div>   
    21.             <CE:Editor ID="editor1" runat="server">   
    22.             </CE:Editor>   
    23.             <asp:Button ID="button1" runat="server" Text="Get editor text" OnClientClick="GetEditorText()" OnClick="button1_Click" /><br />   
    24.             <asp:TextBox ID="tbServer" runat="server"></asp:TextBox>   
    25.             <asp:Label ID="label1" runat="server"></asp:Label>   
    26.         </div>   
    27.     </form>   
    28. </body>   
    29. </html>   
    30.   
    31. <script>   
    32. var editor1=document.getElementById("<%= editor1.ClientID %>");   
    33. var tbServer=document.getElementById("<%= tbServer.ClientID %>");   
    34.   
    35. function GetEditorText()   
    36. {   
    37. tbServer.value=editor1.getHTML();   
    38.   
    39. }   
    40. </script>  
    Regards,
     
    ken
View Complete Thread