HttpHandler with Flash file upload question
Posted
by
Projapati
on Stack Overflow
See other posts from Stack Overflow
or by Projapati
Published on 2011-01-10T04:16:35Z
Indexed on
2011/01/10
4:53 UTC
Read the original article
Hit count: 229
httphandler
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?
© Stack Overflow or respective owner