Hi koolhd,
Try the page below on your site
upload a avi file, insert it and click on the show button
If you still get this issue on the example below, please send me the test url of that page to me.
-
<%@ Page Language="C#" AutoEventWireup="True" %>
-
-
<%@ 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 id="Head1" runat="server">
-
<title>DataList Example</title>
-
</head>
-
<body>
-
<form id="form1" runat="server">
-
<CE:Editor ID="Editor1" runat="server">
-
</CE:Editor>
-
<asp:Button ID="button1" runat="server" Text="show" OnClick="button1_Click" />
-
<asp:Label ID="label1" runat="server"></asp:Label>
-
</form>
-
</body>
-
</html>
Regards,
Ken