Sessions are indeed maintained separately between ASP and ASP.NET. Its one
of the top 5 things usually listed on the things you need to keep in mind
when migrating. There are some tricky ways around it, such as creating a
transfer page that creates hidden form items (in ASP) that can then post to
an ASP.NET page, which in turn takes those form posts and places them into
the ASP.NET session. No matter your solution, it'll be a workaround at best.
-----Original Message-----
From: Ricky [mailto:VS_DOT_NET@H...]
Sent: Tuesday, October 23, 2001 9:39 AM
To: ASPX_Professional
Subject: [aspx_professional] Session Problem
I have a session variable in my ASP application and I want to use the same
in my ASP.NET. When I try to read it from either ASP to ASP.NET or ASP.NET
to ASP it does not read it. Seems like it is creating two different session
variables. Does anybody know what is going on?
Thanks