Re: Show Progress label when saving to database

  •  06-25-2010, 1:23 AM

    Re: Show Progress label when saving to database

    Hi Burken,
     
    Try this way
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    4. <html xmlns="http://www.w3.org/1999/xhtml">   
    5. <head id="Head1" runat="server">   
    6.     <title>Untitled Page</title>   
    7. </head>   
    8. <body>   
    9.     <form id="form1" runat="server">   
    10.         <CuteWebUI:UploadAttachments ID="attachemnt1" runat="server">   
    11.         </CuteWebUI:UploadAttachments><br />   
    12.         <asp:Label ID="label1" runat="server"></asp:Label>   
    13.     </form>   
    14. </body>   
    15. </html>   
    16.   
    17. <script>   
    18. var label1 = document.getElementById("<%= label1.ClientID %>");   
    19. function CuteWebUI_AjaxUploader_OnProgress(enable,filename,begintime,uploadedsize,totalsize)   
    20.   
    21. {   
    22.     if(enable)   
    23.     {   
    24.       if(totalsize)   
    25.        {   
    26.         label1.innerHTML=filename+" - "+Math.floor(100*uploadedsize/totalsize)+'%'  
    27.        }   
    28.      }   
    29.       
    30. }   
    31.   
    32. </script>  
    Regards,
     
    ken
View Complete Thread