im now using FancyUpload (flash upload) to allow user to upload files in a small project. I use Generic Handler to handler in server when user uploads his file, but i'm getting error: Can't get session in Generic Handler (.ashx) when using Firefox or Chrome etc except IE
I read so many solution and finally found out that Flash has some bug that can't send cookie in Firefox or Chrome except IE, so i just want all you guy can help give me a best way to pass this thing
Maybe i can check the session in Flash before it's start to send the file to the server or check session in Generic Handler before save it, just tell me how to do it plzzzz
Thanks in advance and sry 4 my E
The standard way to do this is to store whatever data you need from the session in the Application with some unique key. Then pass the unique key to Flash which can pass it back to the server as a url parameter. Then even though the call isn't part of a session, you can use the url parameter to get to the necessary cached data.