session id

  • Thread starter Thread starter Shawn
  • Start date Start date
S

Shawn

Hi.
Is it possible to get the value of the session id when a session is created?

Thanks,
Shawn
 
Hi Shawn,

The id can be accessed with Session.SessionID. Sessions are created in the
Session_OnStart event, which is captured in the global.asax file.

-- Alex Papadimoulis
 
You can access the Session ID using the Session.SessionID property. This
should be accessible to you in the Session_OnStart event in global.asax.

Mun
 
Back
Top