You can't share session state between ASP and ASP.NET directly.
There are a few work arounds, however. Take a look here:
http://msdn.microsoft.com/library/de...rtToASPNET.asp
Ir describes how to use SQL Server to share session state between ASP and ASP.NET. It's pretty complex, but it does the trick.
If you only need to transfer the data once, you could write out the values in the ASP page to a form, and then submit that form to an ASPX page. That page can read in the values, and store them in Session state.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.