简体   繁体   中英

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. 3.5 runs on top of 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.

So you'll need an app pool for .NET 1.1 and .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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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