tags:

views:

42

answers:

3

How to work different .net versions in IIS 6.0 without creating two application pools?

+3  A: 

You have to create an application pool for 1.1 and one for 2.0. 3.5 runs on top of 2.0.

Raj Kaimal
+1  A: 

You can't because IIS 6.0 needs an Application app pool for the different .net Version as it loads the corresponding ddl files in the background.

So you'll need an app pool for .NET 1.1 and .NET 2.0+

lunactic
A: 

You have to create an app pool for .net 1.1, a separate one for 2.0 and 3.5 and a third one if you want to do 4.0 development.

Unfortunately this is the point of application pools so there is no way around it that I know of.

rtpHarry