IIS Host 多个版本Framework的ASP.Net注意事项;
对于运行多个.NET Framework 版本的ASP.NET来说,有一个铁律就是:
You cannot run more than one version of the framework in the same application pool in IIS6.
如果你不遵守,那么"Server Application Unavailable" 将会和一直相伴。--Running multiple versions of the Framework in ASP.NET
很多时候,是你疏忽将两个不同版本的.NET装载到同一个进程和Application Pool 中,比如你默认是在IIS中选择的是同一个 "Default Application Pool"
You cannot run more than one version of the framework in the same application pool in IIS6.
如果你不遵守,那么"Server Application Unavailable" 将会和一直相伴。--Running multiple versions of the Framework in ASP.NET
很多时候,是你疏忽将两个不同版本的.NET装载到同一个进程和Application Pool 中,比如你默认是在IIS中选择的是同一个 "Default Application Pool"