Session management between asp and asp.net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have requirement of publishing both asp pages and asp.net pages in same
website. I will be passing session variables between asp and asp.net pages
using some intermediate pages. I have a doubt, I have seted the session
timeout of 20 minutes in the IIS. If I am only working in the asp.net pages
for 25 minutes, what will happen for the asp session? will it be expires?

Thanks,
Vijay
 
Vijay,

Yes, the Session state management for ASP and ASP.NET are not compatible as
you know so you'll have to take care to make sure the time out values are the
same for both.
 
Back
Top