virtual directories with different .net frameworks

前端 未结 3 786
离开以前
离开以前 2021-01-15 04:22

Is it possible to have two virtual directories under the same website in IIS but have the virtual directories be using different versions of the .net framework?

For

3条回答
  •  天涯浪人
    2021-01-15 04:27

    You have to create an "application" for both of the virtual directories, and then you'd assign their ASP.NET version using the ASP.NET tab under web site properties.

    Also, as @sunny mentioned, you'd need to have two different application pools, and each virtual directory would have to be pointed to a different application pool. Because different versions of ASP.NET cannot run within the same application pool.

提交回复
热议问题