I'm using 2 uploader control in the same aspx file. but getting an operation abort message in IE7+ in Vista after the page gets loaded. the error doesn't come if i don't initialize the uploader controls.
I only get this error message if I try to modify a page before it has finished loading. You need to use the window.onload event or the SWFObject Plugin to initialize SWFUpload. Otherwise IE freaks out when the HTML for the SWF file is added to the page.
as mine is an Asp.Net AJAX app, i was adding the init method with Sys.Application.add_load at the beginning of the file. now after adding this at the end of the html solved the issue
Modifying DOM before DomReady
I only get this error message if I try to modify a page before it has finished loading. You need to use the window.onload event or the SWFObject Plugin to initialize SWFUpload. Otherwise IE freaks out when the HTML for the SWF file is added to the page.
as mine is an Asp.Net AJAX
as mine is an Asp.Net AJAX app, i was adding the init method with Sys.Application.add_load at the beginning of the file. now after adding this at the end of the html solved the issue