Here is a link with some more information... http://aspnetfaq.com/
-----Original Message----- From: Remie Bolte [mailto:asplist@;vinrem.nl] Sent: Tuesday, October 22, 2002 10:13 AM To: ActiveServerPages Subject: Re: Mergin "classic" ASP and .NET You can indeed run ASP and ASP.NET applications side by side AFAIK they don't share eachothers session because ASP.NET has it's own session service, and therefor running outside the IIS process. in order to exchange data between the 2 you could consider using POST/GET (forms or querystrings) or custom cookies. Just create your own cookie that you read/write in Classic and .NET. Or use a temp database table. Or a textfile on the server... Regards remie bolte ----- Original Message ----- From: "Staffan Carlsson" <[EMAIL PROTECTED]> To: "ActiveServerPages" <[EMAIL PROTECTED]> Sent: Tuesday, October 22, 2002 2:01 PM Subject: Mergin "classic" ASP and .NET > I need to run my newly written .NET applications side by side with > "classic" ASP apps. I therefore have to read each others Session > Variables. How to exchange information between the 2 ??? > > Regards > > Staffy > > --- > You are currently subscribed to activeserverpages as: [EMAIL PROTECTED] > To unsubscribe send a blank email to %%email.unsub%% > --- You are currently subscribed to activeserverpages as: [EMAIL PROTECTED] To unsubscribe send a blank email to %%email.unsub%% --- You are currently subscribed to activeserverpages as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED]
