ASP.NET tab is missing from IIS 6.0
Problem Description
We all know this problem, the ASP.NET tab is missing from the IIS 6.0 website properties and you know, that you have more than one version of ASP.NET installed. Great, what do you do?
Solution
Doing a manual check on the configuration can be a very difficult task, since you will have to check a lot of different settings. The ASP.NET Debugging blog have posted a script that will check your configuration settings for you, and better yet, it will fix any problems you might have. I have tested this on my server, and the ASP.NET tab re-appeared immidiatly.
http://blogs.msdn.com/b/tom/archive/2008/04/17/asp-net-tab-missing.aspx
Also note that when installing ASP.NET you must use the command:
aspnet_regiis.exe -ir -enable
This will install ASP.NET and enable it for use, but it will not upgrade or touch existing ASP.NET sites. In order to make the existing sites work with ASP.NET you must select the desired ASP.NET version from your newly recovered ASP.NET tab in the website properties dialog.
Happy programming!