Re: Ajax Uploader - progress width after upload

  •  01-03-2013, 10:49 AM

    Re: Ajax Uploader - progress width after upload

    Hi lanikfs,

     

    You can control the progress text style like the example below, the div is the progress text container, you can change the style directly.

     

    1. <%@ Page Language="C#" %>  
    2.   
    3. <%@ Register Namespace="CuteWebUI" TagPrefix="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>  
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head id="Head1" runat="server">  
    7.     <title>example</title>  
    8. </head>  
    9. <body>  
    10.     <form id="form1" runat="server">  
    11.         <CuteWebUI:Uploader runat="server" ID="Uploader1"  
    12.             ProgressCtrlID='Uploader1Progress' ProgressTextID='Uploader1ProgressText'>  
    13.         </CuteWebUI:Uploader>  
    14.         <asp:Panel runat="server" ID="Uploader1Progress">  
    15.             <div id="Uploader1ProgressText" style="width: 100px; overflow: hidden">  
    16.             </div>  
    17.         </asp:Panel>  
    18.     </form>  
    19. </body>  
    20. </html>  
     

    Regards,

     

    Ken 

View Complete Thread