vote up 0 vote down star

I am using the new AsyncFileUpload control from the latest AjaxControl ToolKit. My query is regarding the OnClientUploadStarted event which is fired before the upload is started. Is there any way to cancel the upload, as I am checking the fileExtension at this point and would like to cancel the upload so that it does not continue and go on to upload the file. My end result is allow only images to be uploaded. Please advise and thanks for your time.

flag

25% accept rate
I have checked the javascript in sufficient detail and have reached to the conclusion that the webcontrol is very much capable of stopping the file upload with the help of the javascript OnClientUploadStarted alone. However, when it raises this externally provided event, the function is invoked by function Sys$EventHandlerList$getHandler(id) of MicrosoftAjax.debug.js line 2901-2917. This function does not track the return values which causes the default behaviour. Please advise me, I am very close to an answer. – Sloane Oct 13 at 17:48

3 Answers

vote up 0 vote down

Hi, I have exactly same issue... can you be more descriptive.

What this overriding is doing here.

link|flag
vote up 0 vote down check

Got the answer, all I had to do was override the javascript function with this script(not the best answer, but works), you all could have done faster and cleaner

var orig = AjaxControlToolkit.AsyncFileUpload.prototype.raiseUploadStarted;
AjaxControlToolkit.AsyncFileUpload.prototype.raiseUploadStarted = function(e) {
var evt = this.get_events()._getEvent('uploadStarted');
if (evt) {
    if (evt.length > 1)
        return orig(e);
    else if (evt.length === 1)
        return evt[0](this, e);
    }
}
link|flag
vote up 1 vote down

You might try adding a "Regular Expression Validator" to the field, and see if you can use that to validate the file selected before the upload starts.

link|flag
I tried adding a custom validator, however the validation event is not fired until the form is submitted, however the file is uploaded instantaneously once selected. Hence, my option is to use the OnClientUploadStarted event – Sloane Oct 13 at 13:58
You mean a Regex validator can't suffice? It has built-in client-side validation. If you build your own custom validator, you can attach a client-side function as well. – o.k.w Oct 13 at 14:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.