Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application pool in IIS 7 does not show .NET Framework 3.5

I've .NET Framework 3.5 SP1 installed on my system. When I create a new application pool, I just see the .NET Framework V2.0.xxx. I've a file that uses the ASP.NET MVC. It's not loading. I think this might be the reason.

like image 610
Abdulsattar Mohammed Avatar asked Jun 20 '09 18:06

Abdulsattar Mohammed


3 Answers

I think rather confusingly it's referring to the .Net Runtime version, which for .Net 3.5 framework is still Runtime version 2.0.

You can google for explanations for this but it's along the lines of.

  • .Net 2.0 Framework -- .Net 2.0 Runtime
  • .Net 3.0 Framework -- .Net 2.0 Runtime
  • .Net 3.5 Framework -- .Net 2.0 Runtime
  • .Net 3.5 Sp1 -- .Net 2.0 Runtime
  • .Net 4.0 Framework -- .Net 4.0 Runtime

I've noticed that MVC sometimes has problems if it's not run using the "Integrated" Managed Pipeline Mode, so might want to try that.

like image 168
danswain Avatar answered Oct 19 '22 07:10

danswain


Scott Hanselman's ComputerZen.com - How to set an IIS Application or AppPool to use ASP.NET 3.5 rather than 2.0

like image 39
eu-ge-ne Avatar answered Oct 19 '22 07:10

eu-ge-ne


Not sure what exactly the question is, if you expecting framework 3.5 in IIS don't. The two frameworks in IIS are 1.1 and 2.0. So framework 3.5 will still only show 2.0 in IIS

like image 25
Stuart Avatar answered Oct 19 '22 06:10

Stuart