ASP.Net cohabitation with ASP: any possible issue ?

  • Thread starter Thread starter Juan T. Llibre
  • Start date Start date
J

Juan T. Llibre

Several options to do that are pointed to at :
http://weblogs.asp.net/bleroy/archive/2004/10/21/245826.aspx

Also, see :
http://www.codeproject.com/aspnet/SessionTransfer.asp

Also, see :
http://www.eggheadcafe.com/articles/20021207.asp

If you don't need to pass information from ASP --> ASP.NET --> ASP
you'll have no problem. They can coexist easiyl without interfering each other.




Juan T. Llibre, asp.net MVP
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
======================================
 
one thing, asp and asp.net sessions aren't the same session, so if you need
share data in this way you can't

greetings,
Sergio E.
 
Good evening,

I will develop an ASP.Net 2.0 application that will be integrated into
a -classic- ASP web site.
Beside ensuring that the ASP.Net framework is installed, are there any
specific issue that could be created by the cohabitation of the two
techniques on the same site and that I should be aware of before starting
the development?
Basically, the ASP.Net application will edit/display database data.
Thanks in advance for your feedback,

Michel
 
yup but although not shared, i think both have same session ID. so u
can manipulate the session ID and find a way to 'share' session
variables

that is what i experienced, when i have a .net 2.0 sub virtual
directory under a .net 1.0 website.
 
Back
Top