2
votes

I have a classic ASP site hosted on IIS and I need to add new pages to the site, but the new pages have to be ASP.NET; I created few pages put them in the same directory and they are working fine.

My problem is the classic ASP and ASP.NET pages are not sharing the sessions. The website on IIS is configured as InProc and use cookies, so my goal is if ASP.NET page defined session as

session("abc")=5

The classic ASP page that is on the same website and directory could read its value. Thanks in advance.

1
Can you use a common storage? Cookies for example. (A server local storage like file system may be a solution too but I think it's TOO ugly, dirty and tricky to maintain). - Adriano Repetti

1 Answers