In my application, I am using a flash control. This control is used for uploading files. From what I have read, Flash does not send cookies that were set in the browser with the uploaded file. This means that anything that uses cookies will not be accessible in the upload page. This means that sessions and forms authentication break using their default implementation, because they use cookies. This usually results in the #2038 error.
As a workaround, I need to set session state as cookieless. This resolves the issue, but almost all the pages in my application use cookies and hence when I set session state as cookieless, the application does not work.
How do I resolve this issue and get my flash control working with my application?
When the going gets tough...the tough gets going..!!!