I have an ASP.NET/IIS 7 web site that is working fine. Now I want to add a classic ASP application to the site in a sub-folder. These are two completely separate applications. One set of users will use the existing ASP.NET app - a different set of users will use the classic ASP app. So I went ahead and created a new folder off of the root and copied the classic ASP app there. When I tried to visit the default page of the classic ASP app, I got redirected to the Login page (because of the web.config settings in my ASP.NET app). So I converted the folder for the classic ASP app to an application. That took care of the Login issue. But now I am getting errors regarding a Custom Role Provider that I am using in the ASP.NET app.
I am guessing that somehow I need to set up my classic ASP app so that it doesn't inherit anything from the web.config of the main ASP.NET app. Am I thinking about this correctly?
Does anyone have any other ideas about the best way to add a legacy ASP application to a ASP.NET site?
Thanks, Corey