Re: Uploaded .avi or .mp3 (media ) do not render on the pages.

  •  10-23-2009, 6:12 AM

    Re: Uploaded .avi or .mp3 (media ) do not render on the pages.

    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.
     
    1. <%@ Page Language="C#" AutoEventWireup="True" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  
    5.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    6.   
    7. <script runat="server">   
    8.     
    9.     protected void button1_Click(object sender, EventArgs e)   
    10.     {   
    11.         label1.Text = Editor1.Text;   
    12.     }   
    13. </script>   
    14.   
    15. <html xmlns="http://www.w3.org/1999/xhtml">   
    16. <head id="Head1" runat="server">   
    17.     <title>DataList Example</title>   
    18. </head>   
    19. <body>   
    20.     <form id="form1" runat="server">   
    21.         <CE:Editor ID="Editor1" runat="server">   
    22.         </CE:Editor>   
    23.         <asp:Button ID="button1" runat="server" Text="show" OnClick="button1_Click" />   
    24.         <asp:Label ID="label1" runat="server"></asp:Label>   
    25.     </form>   
    26. </body>   
    27. </html>  

    Regards,
     
    Ken
View Complete Thread