Re: How to use RenderControl correctly

  •  06-14-2009, 9:39 PM

    Re: How to use RenderControl correctly

    Hi DanPaiva ,
     
    Editor can not use like that, you can try this way
     
    1. <%@ Page Language="vb" %>   
    2.   
    3. <html>   
    4. <head>   
    5.     <title>test</title>   
    6. </head>   
    7.   
    8. <script runat="server">   
    9.  Protected Overloads Overrides Sub OnLoad(ByVal e As EventArgs)    
    10.     Dim Editor1 As New CuteEditor.Editor()    
    11.     Editor1.ID = "id_here"    
    12.     panel1.Controls.Add(Editor1)    
    13.     MyBase.OnLoad(e)    
    14. End Sub    
    15.       
    16. </script>   
    17.   
    18. <body>   
    19.     <form id="Form1" runat="server">   
    20.         <asp:Panel ID="panel1" runat="server">   
    21.         </asp:Panel>   
    22.     </form>   
    23. </body>   
    24. </html>  

    Regards,
     
    Ken
View Complete Thread