I have a user control in which I have file upload control and uploadify
script. I have a handler that is needed to upload files. In short I have followed this to use uploadify
with asp.net. It is working fine. But I want to do some more task in code behind of that user control when all files are uploaded. How my user control will know that all files are done? Can't use jquery ajax because I have user control not aspx page, hence WebMethod
will not be handle by it. Any other way?
Asked
Active
Viewed 70 times
0
-
can you share some code? You could just return a string for each upload you do with a success or fail message. – Spluf Feb 01 '16 at 12:51
-
My code is noting more than mentioned link has – Imad Feb 01 '16 at 13:01
-
change the ProcessRequest method from void to string for example and set that string similar to that context.response and return it. – Spluf Feb 01 '16 at 13:35