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

  • Thread starter Thread starter Johndoe
  • Start date Start date
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!
 
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
 
Back
Top