Accessing ASP session info with ASP.NET

clems22

New Member
I'm in charge of a decent-sized web site entirely built on classic ASP. I use the session object very heavily. I am now building a new area of the site with ASP.NET, and I want to track user sessions across the entire site (ASP and ASP.NET). Is there any way in ASP.NET to get session information that was stored in classic ASP? I have tried simply putting the session keys into the ASP.NET session object, but I haven't had any success in getting the data back.<BR><BR>Does anyone know if it is possible to do this, either natively or with a 3rd party tool?<BR><BR>Thanks,<BR>Bill GrossNope...They use different sessions. You'd have better luck tracking them with a cookie, or parsing the logs.Alright, thanks. At least I have the answer.<BR><BR>That reply was quick! :-)
 
Back
Top