Hi RichP714,
Please try the code below on your site, click the show button after insert a video to see the result.
- <%@ Page Language="C#" %>
- <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
- <script runat="server">
-
- protected void button1_Click(object sender, EventArgs e)
- {
- label1.Text = editor1.Text;
- }
- </script>
-
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>Untitled Page</title>
-
- </head>
- <body>
- <form id="form1" runat="server">
- <div id="test">
- <CE:Editor ID="editor1" runat="server" >
- </CE:Editor>
- <asp:Label ID=label1 runat=server></asp:Label>
- <asp:Button ID=button1 runat=server Text=Show OnClick="button1_Click" />
- </div>
- </form>
- </body>
- </html>
Regards,
ken