简体   繁体   English

如何在IIS 6.0中使用不同的.net版本

[英]How to work different .net versions in IIS 6.0

如何在IIS 6.0中工作不同的.net版本而不创建两个应用程序池?

You have to create an application pool for 1.1 and one for 2.0. 您必须为1.1创建一个应用程序池,为2.0创建一个应用程序池。 3.5 runs on top of 2.0. 3.5在2.0之上运行。

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. 您不能这样做,因为IIS 6.0在后台加载相应的ddl文件时,需要针对不同的.net版本的应用程序应用程序池。

So you'll need an app pool for .NET 1.1 and .NET 2.0+ 因此,您需要一个适用于.NET 1.1和.NET 2.0+的应用程序池

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. 您必须为.net 1.1创建一个应用程序池,为2.0和3.5创建一个单独的应用程序池,如果要进行4.0开发,则需要创建第三个应用程序池。

Unfortunately this is the point of application pools so there is no way around it that I know of. 不幸的是,这是应用程序池的重点,因此我无法解决。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM