tags:

views:

676

answers:

2

In the old version of IIS Manager, I could just right-click on a VD, hit properties, and then in the ASP.NET tab pick the version of ASP.NET I wanted to run. Does anyone know if that is still possible? I am running a localhost instance of IIS on my Vista box and I am not used to the new UI that IIS 7 comes with.

+1  A: 

In IIS7 the ASP.NET version is specified in an application pool (which is then used by your web app). There's a screenshot of the dialog here:

http://www.stolenbit.com/2008/10/select-aspnet-version-in-iis-7.html

dommer
+2  A: 

You need to change the application pool - the ASP.NET version is set at the application pool level.

Left click the virtual directory in IIS manager, then on the far right of the screen click on 'advanced settings' The application pool is at the top of the list there.

If you need to, you can add a new application pool by right clicking the 'application pools' icon in the left pane and selected 'Add Application Pool'

Steve Willcock