.NET framework question

Joined: 11/28/2008
User offline. Last seen 1 year 3 weeks ago.

Does anyone know if I can install .net 1.1 and .net 2.0 on the same machine and use 1.1 on one web site and 2.0 on another without problems?

Joined: 11/28/2008
User offline. Last seen 3 years 10 weeks ago.
You can. After you install

You can. After you install .NET 2.0 a new tab will appear in IIS for ASP.NET and allow you to pick the version. Also, you'll need to keep your application pools separate for .NET 1.1 web apps and .NET 2.0 web apps or you'll have problems.

Joined: 11/28/2008
User offline. Last seen 1 year 3 weeks ago.
how do I keep the application

how do I keep the application pools separate? is this hard?

Joined: 11/28/2008
User offline. Last seen 3 years 9 weeks ago.
Joined: 11/28/2008
User offline. Last seen 3 years 10 weeks ago.
No, its not hard. In IIS you

No, its not hard. In IIS you just need to create a new application pool. Then on your web app, set it to use the new app pool you created, then set its .NET version to 2.0.

You can try running them in the same app pool, but I've had problems doing that.