we've got a large site that was built using classic ASP. i've read that
session state info can't be shared between classic and .Net, but, as the
client continues to add new functionality to the site, i'd like to move the
development to .Net. is it possible to share info like my login/permission
session cookies between the two frameworks? what other issues am i going to
run into with trying to add .Net pages into classic ASP?
tks
Remy - 19 Oct 2005 14:20 GMT
Yes, you can reuse cookies, in my ASP.NET I use the new authentication
mechanism, but also check and set the old cookie separate.
You can still add develop classic ASP page in a ASP.NET project. There
is no "New Item" option for it, but you can just choose text file and
give it a .asp ending.
Remy Blaettler
www.collaboral.com
Juan T. Llibre - 19 Oct 2005 14:23 GMT
Check this out :
http://weblogs.asp.net/bleroy/archive/2004/10/21/245826.aspx
Essentially :
All solutions incur a performance cost as the data has to be marshaled
between the COM world of ASP and the .NET world of ASP.NET.
First, there’s a solution in MSDN:
Juan T. Llibre - 19 Oct 2005 14:27 GMT
Hmmm...
OE flubbed up some links.
Here they are again :