AjaxUploader:UploadAttachments continues to transfer after cancel

  •  01-14-2009, 4:29 PM

    AjaxUploader:UploadAttachments continues to transfer after cancel

     
    Method:
     
    1. Use Firefox, running Firebug extension
        1. Open Firebug, and goto HTML tab, sub tab NET, or whatever it takes to see the http request beging transferred.
    2. Upload a large file from sample page http://ajaxuploader.com/Demo/multiple-files-upload.aspx 
    3. Cancel upload before completion ( near beginning so you have time to see what I mean )
     
    Result:
     
    1. POST multiple-files-upload.aspx.... continue to transfer all of the file, despite being cancelled.
     
    This is a major issue.
     
    Is there a fix, or something I need to do to prevent cancelled uploads being transferred after the cancel event?
     
    My .aspx code ( although there is more to the code behind vb.net ):
     
    <AjaxUploader:UploadAttachments ID="UploadAttachments1" runat="server" 
        RemoveButtonBehavior="Delete"
        ManualStartUpload="True"
        InsertText="Browse Files"
        ActionButtonBehavior="None"
        ShowCheckBoxes="False"
        ShowFileIcons="False"
        ShowRemoveButtons="False"
        TableHeaderTemplate="&lt;td nowrap='nowrap'&gt;&lt;/td&gt;&lt;td&gt;Uploaded Files&lt;/td&gt;"
        CancelAllMsg="Remove All" ProgressPanelWidth="610">
        <HeaderRowStyle Font-Bold="True" Width="100%" />
        <TableStyle CssClass="AjaxUploaderAttachmentsTable" Width="100%" />
    </AjaxUploader:UploadAttachments>
     
     
    Regards,
     
    Al Pieroway
     
     
View Complete Thread