HttpHandler with Flash file upload question
- by Projapati
I have a flash file uploader that allows uploading multiple files in one shot.
Now on one click how many times will the hanlder is supposed to be called?
I am seeing that the ProcessRequest() of the HttpHandler is getting called for each of the files I upload. If I upload 5 files, then the Process request gets called 5 times.
This seems odd. I would expect the handler to be called just once where I will loop the
Can anyone confirm this behavior or I am missing something?