I want to implement Asynchronus File Upload.
I've tried ajax:AsyncFileUpload
control. It's working fine only with InProc Mode.
But I'm using StateServer Mode.
Any help from anybody?
Thanks in advance.
Regards
Debashis
I want to implement Asynchronus File Upload.
I've tried ajax:AsyncFileUpload
control. It's working fine only with InProc Mode.
But I'm using StateServer Mode.
Any help from anybody?
Thanks in advance.
Regards
Debashis
AsyncFileUpload
control tries to put anHttpPostedFile
instance into the session. This works fine with InProc session but will fail with out of process session because this requires the class to be marked with SerializableAttribute. Long story short: you can't use anything else thanInProc
with theAsyncFileUpload
component.