Running IIS 6 with a main website using .net 4. I have many sub websites under that mostly running .net 4 and when browsing to them default.aspx auto loads without issue. One of the websites, however, is running .net 3.5 and default.aspx won't load by itself when browsing to an open ended url: http://127.0.0.1/TestApp however if I browse directly to the file it works fine: http://127.0.0.1/TestApp/Default.aspx.
Looking at the Documents under the .net 3.5 web application it does show Default.aspx as an "enabled default content page." If I switch the app to .net 4.0 the default.aspx page does load automatically. I cannot keep this setting though because it is a compiled web app and errors out on some pages and don't have the access to update the code.
Has anyone seen this issue and know how to resolve? Any help/ideas would be great!
Thanks!
EDIT
Error Page The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /licensure/eurl.axd/ce90d150037c2545966c2948cd3e2e7e/
Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053
Default.aspxat the top of the default documents list? Also, it's recommended that you put this app in a different app pool from your .NET 4 apps. Have you done that? - Brian Driscoll