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.
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="<td nowrap='nowrap'></td><td>Uploaded Files</td>"
CancelAllMsg="Remove All" ProgressPanelWidth="610">
<HeaderRowStyle Font-Bold="True" Width="100%" />
<TableStyle CssClass="AjaxUploaderAttachmentsTable" Width="100%" />
</AjaxUploader:UploadAttachments>
Regards,
Al Pieroway