|
Subject:
|
ASP.Net pages share session variables...??
|
|
Posted By:
|
jakeriggs
|
Post Date:
|
4/23/2008 1:22:16 PM
|
Hi...
Can ASP pages and ASP.Net pages share session variables...??
thanks for any reply.....
http://www.californiahealthautoinsurance.com/ health insurance provider or auto insurance
|
|
Reply By:
|
planoie
|
Reply Date:
|
4/23/2008 9:10:16 PM
|
Simple answer: Nope.
Session is managed inside the runtime process of each ASP technology so they can't share. ASP.NET can use SQL server as it's session persistence store, and you might be able to rig up something that could get you that data via a SQL connection, but that would require a custom session solution in ASP. ASP only uses in-process storage.
-Peter peterlanoie.blog
|