Hi DanPaiva ,
Editor can not use like that, you can try this way
-
<%@ Page Language="vb" %>
-
-
<html>
-
<head>
-
<title>test</title>
-
</head>
-
-
<script runat="server">
-
Protected Overloads Overrides Sub OnLoad(ByVal e As EventArgs)
-
Dim Editor1 As New CuteEditor.Editor()
-
Editor1.ID = "id_here"
-
panel1.Controls.Add(Editor1)
-
MyBase.OnLoad(e)
-
End Sub
-
-
</script>
-
-
<body>
-
<form id="Form1" runat="server">
-
<asp:Panel ID="panel1" runat="server">
-
</asp:Panel>
-
</form>
-
</body>
-
</html>
Regards,
Ken