S Shawn Dec 12, 2003 #1 Hi. Is it possible to get the value of the session id when a session is created? Thanks, Shawn
A Alex Papadimoulis Dec 12, 2003 #2 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
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
M Munsifali Rashid Dec 12, 2003 #3 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
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