Session Variables Troubles in ASP and ASP.NET

sabahor

New Member
I am beginning the long process of migrating from ASP to ASP.NET. I have several form based applications that make heavy use of session variables. I want to migrate the applications in PHASES rather than all at once.<BR><BR>My problem is that ASP and ASP.NET do not share session variables. How can I allow my ASP.NET pages to access session information from my ASP pages or vice versa.<BR><BR>I have thought about using cookies and storing the session variables in a database. These methods seem quite cumbersome, and I would prefer to avoid them if possible.<BR><BR>So how exactly do I share data between ASP and ASP.NET?<BR><BR>Please help!!!!!<BR><BR><BR>Anthony GatlinI'm afraid there is no easy way. The only options are to use an external store for your session variables, such as a SQL database, cookies, a server-side XML file, etc.
 
Back
Top