How to share session variable between classic asp and asp.net
Hi Guys,
I need to share a session variable urgently from a classic asp website to a .net website. I don't want to store in a database. I need a quick easy solution asap. Please help
Re: How to share session variable between classic asp and asp.net
How to share session between ASP and Asp.net in MSDN
Re: How to share session variable between classic asp and asp.net
There is no easy method I've heard of because you can't share sessions between asp & asp.net. If you want to avoid using database to stroe session data then you could share a cookie between classic & .net asp like here but if it's sensitive info you'd have to introduce aysmetric crypto on cookie values.
Let us know how you get on.