Hi
As far as the Session documentation of .NET goes you cannot share
sessions between asp and aspx but yes there are some turn around to
achieve the same
but as far as .NET support goes it does not allow to share across
-----Original Message-----
From: Kapil Raj [mailto:kapil.raj@h...]
Sent: Tuesday, January 14, 2003 7:30 PM
To: ASPX_Professional
Subject: [aspx_professional] Re: Can session data be shared between aspx
and asp?
Hi tom,
session can be shared between asp and asp.net. Please visit the site
dotnetbips.com and find the article on the same. i hope you will get
your
answer.
Regards
Kapil Raj
----- Original Message -----
From: "Tom Zhang" <tzhang@p...>
To: "ASPX_Professional" <aspx_professional@p...>
Sent: Friday, January 10, 2003 2:01 PM
Subject: [aspx_professional] Can session data be shared between aspx and
asp?
> Hi, I have the need to mix asp and aspx in the same web application.
One
> issue I encountered is that the session data created in aspx can not
be
> recognized in asp, vice versa. For example, session("id")=3D"myid" is
> created in an aspx page. When navigating to an asp page, the session
> ("id") on the asp page will still be empty string. It is probabaly
> because that one is an object and another one is a variable or some
other
> reason that aspx and asp use different runtime. Has anyone done
anything
> to resolve the issue? Any suggestions for how to proceed?
> Thanks,
> Tom