I am developing a site using ASP.NET. However, one component of the site is not .NET compliant and requires that I use a classic ASP page for this component.

Basically, I just redirect from my ASP.NET page to the ASP page. When I look at the Session.SessionID of the classic ASP page, it is different from that of the ASP.NET page. This seems to indicate that ASP starts its own Session.

Is there any way to make the ASP page use the same SessionID as the ASP.NET page? If not, is there another way around this problem?