Asp – way to extend a class ASP session whenever an ASP .NET Request is made

asp-classicasp.netsession

I have a web site that runs both classic ASP and ASP.NET Webforms. The sessions for each are separate.

I need to hit some asp page whenever a request is made on the ASP.NET pages.

Why? Because I need to extend the ASP's session so it doesn't expire.

I know this is going to cause a number of issues and I really really don't want to do this, but the decision is not in my hands, unfortunately.

Is there any way to accomplish what I'm trying to do?

Best Answer

Put a .asp page inside an iframe on the asp.net page? Just clarifying here... You don't need to make the iframe visible. 0px or whatever you want. But load it in the src= attribute.

Related Topic