tags:

views:

8

answers:

0

We have some old Classic ASP pages that require that the application pool that the run in has the no-managed code value set.

So we have:

Site (Application pool - ASP.NET v4.0 Integrated Mode) uses forms based authentication
-- Application (Application pool no managed code integrated or classic)

We have processes in the authentication system that take the values out of SQL Server and load them in to classic ASP session and in reverse as required, this is happening at the site level.

So if I have

response.write("Session ID is : " & Session.SessionID)

in a web page that is copied between the 2 folders I get 295369169 from the web site and 279836965 from the Application.

I need a user to login once at the site level and be able to move to any of the different application directories underneath that site. I have been searching and not coming up with anything in the configuration set up to handle this.

thanks in advance for your assistance