Re: Ajax Uploader - more control over 'Cancel All Uploads' button

  •  06-10-2011, 7:58 AM

    Re: Ajax Uploader - more control over 'Cancel All Uploads' button

    I believe I am all set on #2 above.  It can be done by the following:
     
              function DoCancelAll() {

                    var uploader = document.getElementById('<%=Uploader1.ClientID %>');
                    uploader.cancelall();
                }

     
     I found this piece of code at this thread:
View Complete Thread