Is it possible to manually recreate Session state with session cookie?

J

Johndoe

Hi,

I'm building a Web page with a Flash component that post some content to a
handler (ashx file). There is a known bug with Flash 8 running on Firefox,
whereby Flash will not send cookies (I believe only session cookies). This
poses a problem for my receiving Web page, because the latter cannot access
the Session state since the session cookie was not sent.

Is there a way to recreate the Session object given the session cookie? I
can pass the session cookie as a querystring.

Thanks!
 
C

Chris Fulstow

Maybe you could use cookieless sessions? Then the SessionID will
automatically be passed on the querystring? You can specify this is
your web.config:

<sessionState
mode="InProc"
cookieless="true"
timeout="20"
/>

HTH,

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,534
Members
45,008
Latest member
Rahul737

Latest Threads

Top